Skip to content

Instantly share code, notes, and snippets.

@hi-im-milan
Created February 14, 2015 23:08
Show Gist options
  • Save hi-im-milan/cb1deed32ca80f1833c9 to your computer and use it in GitHub Desktop.
Save hi-im-milan/cb1deed32ca80f1833c9 to your computer and use it in GitHub Desktop.
JS test
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