1
0
mirror of https://github.com/MisskeyIO/misskey synced 2025-01-03 08:23:39 +09:00
MisskeyIO/src/web/app/desktop/scripts/input-dialog.ts

13 lines
340 B
TypeScript
Raw Normal View History

2017-03-18 20:05:11 +09:00
import * as riot from 'riot';
2017-02-18 17:43:31 +09:00
2017-03-18 20:05:11 +09:00
export default (title, placeholder, defaultValue, onOk, onCancel) => {
2017-02-18 17:43:31 +09:00
const dialog = document.body.appendChild(document.createElement('mk-input-dialog'));
2017-11-13 18:05:35 +09:00
return (riot as any).mount(dialog, {
2017-02-18 17:43:31 +09:00
title: title,
placeholder: placeholder,
'default': defaultValue,
onOk: onOk,
onCancel: onCancel
});
};