mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-27 13:46:43 -06:00
20 lines
340 B
JavaScript
20 lines
340 B
JavaScript
const riot = require('riot');
|
|
|
|
module.exports = me => {
|
|
riot.mixin('i', {
|
|
init: function() {
|
|
this.I = me;
|
|
this.SIGNIN = me != null;
|
|
|
|
if (this.SIGNIN) {
|
|
this.on('mount', () => {
|
|
me.on('updated', this.update);
|
|
});
|
|
this.on('unmount', () => {
|
|
me.off('updated', this.update);
|
|
});
|
|
}
|
|
},
|
|
me: me
|
|
});
|
|
};
|