mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 22:36:44 -06:00
8 lines
209 B
JavaScript
8 lines
209 B
JavaScript
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];
|
|
}
|
|
});
|