blob: 39d7f3db7a48289711109e3e65bd518cbee95e5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import * as riot from 'riot';
export default (title, onOk, onCancel) => {
const dialog = document.body.appendChild(document.createElement('mk-input-dialog'));
return (riot as any).mount(dialog, {
title: title,
type: 'password',
onOk: onOk,
onCancel: onCancel
});
};
|