Skip to content

Commit

Permalink
git flow init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tsm15002 committed Nov 21, 2016
1 parent 68efc6b commit e941028
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions assets/js/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,20 +100,20 @@ app.controller('404Ctrl', ['$scope', function ($scope) {
}]);


app.controller('CategoryCtrl', ['$scope', function ($scope) {
$scope.page.title = 'Categories';
$scope.page.id = 'cat';
app.controller('FoodCtrl', ['$scope', function ($scope) {
$scope.page.title = 'Food';
$scope.page.id = 'food';
$scope.page.yourVar = "globalStuff";

$scope.var2 = "localStuff";
}]);


app.controller('FoodCtrl', ['$scope', function ($scope) {
$scope.page.title = 'Food';
$scope.page.id = 'food';
app.controller('CategoryCtrl', ['$scope', function ($scope) {
$scope.page.title = 'Categories';
$scope.page.id = 'cat';
$scope.page.yourVar = "globalStuff";

$scope.var2 = "localStuff";
}]);

Expand Down

0 comments on commit e941028

Please sign in to comment.