Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created December 24, 2016 15:47
Show Gist options
  • Select an option

  • Save javaeeeee/41925e33817e9528e104013a1a0c9a89 to your computer and use it in GitHub Desktop.

Select an option

Save javaeeeee/41925e33817e9528e104013a1a0c9a89 to your computer and use it in GitHub Desktop.
AngularJS module and controller
(function () {
angular.module('app', [])
.controller('HelloController', HelloController);
HelloController.$inject = ['$scope'];
function HelloController($scope) {
$scope.myModel = 'World';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment