Files
fizzy/app/javascript/controllers/dialog_controller.js
T
2024-09-24 14:30:22 -04:00

14 lines
222 B
JavaScript

import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = [ "dialog" ]
open() {
this.dialogTarget.showModal()
}
close() {
this.dialogTarget.close()
}
}