Created
January 24, 2017 18:32
-
-
Save javaeeeee/1be5509fd8f5aa028ab582984b2d93ab to your computer and use it in GitHub Desktop.
The file containing HelloController
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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