Created
March 22, 2013 01:30
-
-
Save matthewrobertson/5218277 to your computer and use it in GitHub Desktop.
JS Angularjs Directive Scaffold
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() { | |
"use strict"; | |
angular.module('caseShow') | |
.directive('timeAgo', function($timeout) { | |
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