Created
November 16, 2013 20:38
-
-
Save jonnybojangles/7504987 to your computer and use it in GitHub Desktop.
This file contains 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
angular.module('youtubeWidget.directives', []). | |
directive('youtubeWidgetApp', function(){ | |
return { | |
restrict: 'C', | |
templateUrl: 'youtubeWidgetApp.html' | |
} | |
}). | |
run(function($templateCache){ | |
$templateCache.put('youtubeWidgetApp.html', '' + | |
'<div class="mod-youtubeWidget">' + | |
'This is the main youtubeWidget Mod Container ' + | |
'</div>' + | |
''); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment