Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created November 1, 2017 21:44
Show Gist options
  • Save Kamilnaja/8a123d56ff234582761b6c16aade2512 to your computer and use it in GitHub Desktop.
Save Kamilnaja/8a123d56ff234582761b6c16aade2512 to your computer and use it in GitHub Desktop.
angularJS multiple ctrls
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