1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-23 18:35:27 +01:00
Pinafore-Web-Client-Frontend/routes/_components/dialog/helpers/closeDialog.js

7 lines
130 B
JavaScript
Raw Normal View History

import { emit } from '../../../_utils/eventBus'
export function close () {
let id = this.get('id')
emit('closeDialog', id)
}