Skip to content

Instantly share code, notes, and snippets.

@cleytonferrari
Created February 16, 2014 04:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cleytonferrari/9029353 to your computer and use it in GitHub Desktop.
Save cleytonferrari/9029353 to your computer and use it in GitHub Desktop.
(function () {
'use strict';
var app = angular.module('angularApp');
app.controller('aboutController', ['$scope', function ($scope) {
$scope.title = 'About App Template';
}]);
app.controller('helpController', ['$scope', function($scope) {
$scope.title = 'Help App Template';
}]);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment