This commit is contained in:
syuilo 2017-02-18 17:42:17 +09:00
parent 7602f16727
commit a62fe67e25
3 changed files with 17 additions and 18 deletions

View file

@ -0,0 +1,16 @@
const riot = require('riot');
module.exports = (title, text, buttons, canThrough, onThrough) => {
const dialog = document.body.appendChild(document.createElement('mk-dialog'));
const controller = riot.observable();
riot.mount(dialog, {
controller: controller,
title: title,
text: text,
buttons: buttons,
canThrough: canThrough,
onThrough: onThrough
});
controller.trigger('open');
return controller;
};