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