mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-11-15 09:18:22 +01:00
13 lines
321 B
CoffeeScript
13 lines
321 B
CoffeeScript
|
class PushNotification extends this.OS.GUI.BaseService
|
||
|
constructor: () ->
|
||
|
super "PushNotification"
|
||
|
@iconclass = "fa fa-commenting"
|
||
|
|
||
|
init: ->
|
||
|
# do nothing
|
||
|
awake: ->
|
||
|
console.log @name,@pid
|
||
|
cleanup: ->
|
||
|
# do nothing
|
||
|
|
||
|
this.OS.register "PushNotification",PushNotification
|