Sha256: 0188aab492d18512fe9a7e1b47366525c6c30e93509766ae0f6433e36fd0da5d
Contents?: true
Size: 293 Bytes
Versions: 7
Compression:
Stored size: 293 Bytes
Contents
angular.module('services', []) .factory('relativePathToRoot', function($window) { return function() { var pathToRoot = $window.location.pathname.replace(/\/$/, '').split('/').slice(1).map(function() { return '../'; }).join(''); return pathToRoot; }; });
Version data entries
7 entries across 7 versions & 1 rubygems