mirror of
https://github.com/lxsang/antos-frontend.git
synced 2025-04-07 17:16:44 +02:00
20 lines
486 B
CoffeeScript
20 lines
486 B
CoffeeScript
class Spotlight extends this.OS.GUI.BaseService
|
|
constructor: (args) ->
|
|
super "Spotlight", args
|
|
@iconclass = "fa fa-search"
|
|
init: ->
|
|
@child = [
|
|
{
|
|
text: "#{@.name} (#{@.pid}): dummy notif",
|
|
child: [ { text: "submenu" } ]
|
|
}
|
|
]
|
|
# do nothing
|
|
main: ->
|
|
|
|
awake: (e) ->
|
|
console.log @name ,@pid
|
|
cleanup: (evt) ->
|
|
# do nothing
|
|
|
|
this.OS.register "Spotlight",Spotlight |