You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

urlencode.filter.js 159B

123456
  1. /**
  2. * Created by robin on 12/22/16.
  3. */
  4. angular.module('app').filter('urlencode', ['$window', function($window) {
  5. return $window.encodeURIComponent;
  6. }]);