Skip to content

Instantly share code, notes, and snippets.

@matthewrobertson
Created March 22, 2013 01:30
Show Gist options
  • Save matthewrobertson/5218277 to your computer and use it in GitHub Desktop.
Save matthewrobertson/5218277 to your computer and use it in GitHub Desktop.
JS Angularjs Directive Scaffold
(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