mirror of
https://github.com/nolanlawson/pinafore
synced 2025-02-12 17:30:52 +01:00
7 lines
130 B
JavaScript
7 lines
130 B
JavaScript
|
import { emit } from '../../../_utils/eventBus'
|
||
|
|
||
|
export function close () {
|
||
|
let id = this.get('id')
|
||
|
emit('closeDialog', id)
|
||
|
}
|