Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Created October 17, 2014 11:13
Show Gist options
  • Save xcarpentier/c31cdfc0431891c1605a to your computer and use it in GitHub Desktop.
Save xcarpentier/c31cdfc0431891c1605a to your computer and use it in GitHub Desktop.
<!-- Recommandé -->
<my-calendar-range></my-calendar-range>
<div my-calendar-range></div>
/* Recommandé */
angular
.module('app.widgets')
.directive('myCalendarRange', myCalendarRange);
function myCalendarRange () {
var directive = {
link: link,
templateUrl: '/template/is/located/here.html',
restrict: 'EA'
};
return directive;
function link(scope, element, attrs) {
/* */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment