1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 07:15:47 +01:00

14 lines
344 B
JavaScript
Raw Normal View History

2018-03-11 19:40:32 -07:00
import StatusOptionsDialog from './StatusOptionsDialog.html'
export function showStatusOptionsDialog (statusId) {
let dialog = new StatusOptionsDialog({
target: document.getElementById('modal-dialog'),
data: {
label: 'Status options dialog',
title: 'Status options',
statusId: statusId
}
})
dialog.show()
}