This commit is contained in:
syuilo 2017-02-18 17:39:15 +09:00
parent f640f88277
commit c83302bb80
3 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,8 @@
const riot = require('riot');
riot.mixin('open-window', {
openWindow: (name, opts) => {
const window = document.body.appendChild(document.createElement(name));
return riot.mount(window, opts)[0];
}
});

View file

@ -1,8 +0,0 @@
riot = require \riot
function open(name, opts)
window = document.body.append-child document.create-element name
riot.mount window, opts
riot.mixin \open-window do
open-window: open