mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 22:36:44 -06:00
12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
const riot = require('riot');
|
|
|
|
module.exports = (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
|
|
});
|
|
};
|