1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-07 23:18:41 +01:00

13 lines
210 B
JavaScript
Raw Normal View History

import { on } from '../../../_utils/eventBus'
function onDestroy (id) {
if (this.get('id') !== id) {
return
}
this.destroy()
}
export function oncreate () {
on('destroyDialog', this, onDestroy)
}