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()
|
|
|
|
}
|