UNPKG

generator-sili

Version:

Yeoman generator - Silver Lining (SiLi) - A single-click-to-get-started - skeleton web app with all you need...

24 lines (23 loc) 660 B
define("services/urls", ["app"], function (app) { return app.factory("urls", ["$rootScope", function ($rootScope) { var urls = { resourceRoot: __webApp_ResourceRoot, resourceUrl: function (path) { return urls.resourceRoot + "/" + path; }, urlTitle: function (title) { title=title.toLowerCase(); title=title.replace(/\/?<\w+>/g,"-"); title=title.replace("&amp;","-and-"); title=title.replace(/[^0-9a-zA-Z\-]+/g,"-"); title=title.replace(/\-+/g,"-"); title=title.replace(/^-|-$/g,""); return title; } }; angular.extend($rootScope,urls); return urls; } ]); });