Introduced AppShall

This commit is contained in:
Borys Levytskyi
2015-04-04 16:10:17 +03:00
parent a3ca46174b
commit 17fc0bad97
13 changed files with 80 additions and 75 deletions

View File

@@ -1,7 +1,7 @@
app.compose(function() {
app.controller('expressionInputCtrl', function (){
var dispatcher = app.component('dispatcher');
var dispatcher = app.get('dispatcher');
return {
onViewAttached: function () {
@@ -54,7 +54,7 @@ app.compose(function() {
});
app.controller('resultViewCtrl', function() {
var html = app.component('html');
var html = app.get('html');
var resultViewController = {
$html: null,