kopia lustrzana https://github.com/nolanlawson/pinafore
12 wiersze
248 B
JavaScript
12 wiersze
248 B
JavaScript
|
|
import ComposeDialog from './ComposeDialog.html'
|
||
|
|
|
||
|
|
export function showComposeDialog () {
|
||
|
|
let dialog = new ComposeDialog({
|
||
|
|
target: document.getElementById('modal-dialog'),
|
||
|
|
data: {
|
||
|
|
label: 'Compose dialog'
|
||
|
|
}
|
||
|
|
})
|
||
|
|
dialog.show()
|
||
|
|
}
|