notyim/notyim

View on GitHub
app/javascript/controllers/modal_controller.js

Summary

Maintainability
A
0 mins
Test Coverage
import { Controller } from "stimulus"

export default class extends Controller {
  static targets = [ "show", "dialog" ]

  show(event) {
    event.preventDefault()
    this.dialogTarget.classList.toggle("is-active", true)
  }

  hide(event) {
    event.preventDefault()
    this.dialogTarget.classList.toggle("is-active", false)
  }
}