mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-01-20 10:52:43 +01:00
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
(function(app){
|
|
|
|
var dispatcher = {
|
|
dispatch: function(input) {
|
|
app.command('dispatchInput').execute({input:input});
|
|
}
|
|
};
|
|
|
|
app.service('dispatcher', dispatcher);
|
|
|
|
})(window.app);
|