This commit is contained in:
parent
f640f88277
commit
c83302bb80
|
@ -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'
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
});
|
|
@ -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
|
Loading…
Reference in New Issue