You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/assets/javascripts/views/misc/share.coffee

13 lines
259 B

#= require views/misc/notif
class app.views.Share extends app.views.Notif
@defautOptions:
autoHide: null
init: ->
@type = 'Share'
@count = app.store.get('count') or 0
app.store.set 'count', ++@count
@show() if @count is 5
return