Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit ee26890

Browse files
committed
refactor($resource): simplify url template expansion
1 parent 5137a15 commit ee26890

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ngResource/resource.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* the need to interact with the low level {@link ng.$http $http} service.
2020
*
2121
* # Installation
22-
* To use $resource make sure you have included the `angular-resource.js` that comes in Angular
22+
* To use $resource make sure you have included the `angular-resource.js` that comes in Angular
2323
* package. You can also find this file on Google CDN, bower as well as at
2424
* {@link http://code.angularjs.org/ code.angularjs.org}.
2525
*
@@ -317,7 +317,7 @@ angular.module('ngResource', ['ng']).
317317
}
318318

319319
function Route(template, defaults) {
320-
this.template = template = template + '#';
320+
this.template = template;
321321
this.defaults = defaults || {};
322322
this.urlParams = {};
323323
}
@@ -355,8 +355,8 @@ angular.module('ngResource', ['ng']).
355355
}
356356
});
357357

358-
// set the url
359-
config.url = url.replace(/\/?#$/, '').replace(/\/*$/, '');
358+
// strip trailing slashes and set the url
359+
config.url = url.replace(/\/+$/, '');
360360

361361
// set params - delegate param encoding to $http
362362
forEach(params, function(value, key){

0 commit comments

Comments
 (0)