1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-08 07:28:43 +01:00
Nolan Lawson 8d5690d63d
remove get() with string from Svelte calls (#169)
* remove get() with string pt 1

* remove get() with string pt 2

* fix typo

* fix some null exceptions in get()

* fixup code style
2018-04-19 09:37:05 -07:00

7 lines
130 B
JavaScript

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