21 lines
380 B
CoffeeScript
21 lines
380 B
CoffeeScript
#= require_self
|
|
#= require flowerbox/result
|
|
#= require flowerbox/exception
|
|
#
|
|
Flowerbox =
|
|
debug: false
|
|
ping: ->
|
|
Flowerbox.contact('ping')
|
|
|
|
contact: (url, data...) ->
|
|
Flowerbox.started = true
|
|
if !Flowerbox.debug
|
|
Flowerbox.socket.send(JSON.stringify([ url, data ]))
|
|
Flowerbox.done = true if url == 'results'
|
|
|
|
started: false
|
|
done: false
|
|
|
|
fail: ->
|
|
|