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

@ -6,7 +6,7 @@ module.exports = (me) ~>
require './scripts/user-preview'
require './scripts/open-window.ls'
require './scripts/open-window'
riot.mixin \notify do
notify: require './scripts/notify.ls'

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