yumechi-no-kuni/src/web/app/desktop/scripts/password-dialog.js
2017-08-28 23:47:43 +09:00

11 lines
269 B
JavaScript

import * as riot from 'riot';
export default (title, onOk, onCancel) => {
const dialog = document.body.appendChild(document.createElement('mk-input-dialog'));
return riot.mount(dialog, {
title: title,
type: 'password',
onOk: onOk,
onCancel: onCancel
});
};