Files
BitwiseCmd/app/dispatcher.js
Borys Levytskyi e1963fb09c a lot of changes
2015-04-03 00:20:00 +03:00

12 lines
219 B
JavaScript

(function(app){
var dispatcher = {
dispatch: function(input) {
app.command('dispatchInput').execute({input:input});
}
};
app.service('dispatcher', dispatcher);
})(window.app);