Last active
January 1, 2016 15:59
-
-
Save leblancmeneses/8168088 to your computer and use it in GitHub Desktop.
angular.module - Creation versus Retrieval Example
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
// registers module with dependencies if any, empty array otherwise | |
angular.module('Core', ['kendo.directives']) | |
// gains access to module registration pointer to append more registrations into module | |
// needed when files are bundled | |
angular.module('Core') | |
.directive('requestVerificationToken', [function () { | |
return { | |
..... | |
}; | |
}]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment