mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
import { Controller } from "stimulus"
|
|
|
|
export default class extends Controller {
|
|
call(event) {
|
|
event.preventDefault()
|
|
window.dispatchEvent(new Event("login:modal:open"))
|
|
}
|
|
}
|