summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/i.ls
blob: 9b5fa874412e3d43be112b52fb76f336ba35c84b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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