1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00

13 lines
290 B
JavaScript
Raw Normal View History

2018-03-27 00:02:55 -07:00
import ComposeDialog from './ComposeDialog.html'
2018-03-31 18:46:44 -07:00
import { createDialogElement } from './createDialogElement'
2018-03-27 00:02:55 -07:00
export function showComposeDialog () {
let dialog = new ComposeDialog({
2018-03-31 18:46:44 -07:00
target: createDialogElement(),
2018-03-27 00:02:55 -07:00
data: {
label: 'Compose dialog'
}
})
dialog.show()
}