summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
e6993e4)
This allows asynchronous action execution
+ execute: function(callback) {
var state = this.getState();
var state = this.getState();
+ callback = callback || function() {};
- return state.execute.call(this, this.params, this.appObject);
+ return state.execute.call(this, callback, this.params, this.appObject);
}
throw new Error('Execution not allowed');
}
}
throw new Error('Execution not allowed');
}