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 b45d0f5 commit 68efc6b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions assets/js/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,18 @@ app.controller('CategoryCtrl', ['$scope', function ($scope) {
}]);


app.controller('LoginCtrl', ['$scope', function ($scope) {
$scope.page.title = 'Login';
$scope.page.id = 'login';
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('LoginCtrl', ['$scope', function ($scope) {
$scope.page.title = 'Login';
$scope.page.id = 'login';
$scope.page.yourVar = "globalStuff";

$scope.var2 = "localStuff";
Expand Down

0 comments on commit 68efc6b

Please sign in to comment.