mirror of https://github.com/freeCodeCamp/devdocs
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.
13 lines
259 B
13 lines
259 B
10 years ago
|
#= 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
|