Guest User

Untitled

a guest
Dec 18th, 2015
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var spaceReplace = {
  2.         encode: function(str) { return str && str.replace(/ /g, "-"); },
  3.         decode: function(str) { return str && str.replace(/-/g, " "); },
  4.         is: angular.isString,
  5.         pattern: /[^/]+/
  6.     };
  7.     $urlMatcherFactoryProvider.type('spaceReplace', spaceReplace);
Add Comment
Please, Sign In to add comment