Created
October 17, 2014 11:11
-
-
Save xcarpentier/a7028ef89401504fe28d to your computer and use it in GitHub Desktop.
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
<!-- À éviter --> | |
<div class="my-calendar-range"></div> |
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
/* À éviter */ | |
angular | |
.module('app.widgets') | |
.directive('myCalendarRange', myCalendarRange); | |
function myCalendarRange () { | |
var directive = { | |
link: link, | |
templateUrl: '/template/is/located/here.html', | |
restrict: 'C' | |
}; | |
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