mirror of
https://github.com/MisskeyIO/misskey
synced 2024-12-18 00:29:00 +09:00
13 lines
216 B
Plaintext
13 lines
216 B
Plaintext
riot = require \riot
|
|
|
|
module.exports = (me) ->
|
|
riot.mixin \i do
|
|
init: ->
|
|
@I = me
|
|
@SIGNIN = me?
|
|
|
|
if @SIGNIN
|
|
@on \mount ~> me.on \updated @update
|
|
@on \unmount ~> me.off \updated @update
|
|
|
|
me: me |