Created
November 1, 2017 21:44
-
-
Save Kamilnaja/8a123d56ff234582761b6c16aade2512 to your computer and use it in GitHub Desktop.
angularJS multiple ctrls
This file contains 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
angular.module('myModule', []); | |
angular.module('myModule').controller('ControllerOne', ['$scope', function($scope) { | |
}]); | |
angular.module('myModule').controller('ControllerTwo', ['$scope', function ($scope) { | |
}]) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment