generator-sili
Version:
Yeoman generator - Silver Lining (SiLi) - A single-click-to-get-started - skeleton web app with all you need...
17 lines (16 loc) • 430 B
JavaScript
define("directives/stylesheet", ["app","services/urls"], function (app) {
return app.directive('stylesheet', ["urls",function (urls) {
return {
restrict: "E",
template:'',
replace: true,
scope: {
path: "@"
},
link: function (scope, elm, attrs) {
var e=$('<link rel="stylesheet" type="text/css" href="'+urls.resourceUrl('stylesheets/'+scope.path)+'"/>');
$(elm).replaceWith(e);
}
};
}]);
});