Created
August 16, 2012 17:10
-
-
Save slvdrog/3371750 to your computer and use it in GitHub Desktop.
Angular Plugin - Long Method
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
| var myModule = angular.module('myModule'); | |
| myModule.directive('directiveName', function factory(injectables) { | |
| var directiveDefinitionObject = { | |
| priority: 0, | |
| template: '<div></div>', | |
| templateUrl: 'directive.html', | |
| replace: false, | |
| transclude: false, | |
| restrict: 'A', | |
| scope: false, | |
| compile: function compile(tElement, tAttrs, transclude) { | |
| return { | |
| pre: function preLink(scope, iElement, iAttrs, controller) { ... }, | |
| post: function postLink(scope, iElement, iAttrs, controller) { ... } | |
| } | |
| }, | |
| link: function postLink(scope, iElement, iAttrs) { ... } | |
| }; | |
| return directiveDefinitionObject; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment