Created
February 14, 2015 23:08
-
-
Save hi-im-milan/cb1deed32ca80f1833c9 to your computer and use it in GitHub Desktop.
JS test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a=1; | |
var b=2; | |
var c=a+b; | |
function onRun(){ | |
} | |
function onPause(){ | |
} | |
Notification.subscribe("TimePassedNotification", function(notification){ | |
Logger.debug("Received: "+notification.passedTime); | |
}); | |
var cc=new CountdownCommand(50); | |
Command.send(cc, function(resp){ | |
Logger.debug("Success"); | |
}, function(resp){ | |
Logger.debug("Error"); | |
}, function(resp){ | |
Logger.debug("Progress"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment