This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 19
19
* the need to interact with the low level {@link ng.$http $http} service.
20
20
*
21
21
* # 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
23
23
* package. You can also find this file on Google CDN, bower as well as at
24
24
* {@link http://code.angularjs.org/ code.angularjs.org}.
25
25
*
@@ -317,7 +317,7 @@ angular.module('ngResource', ['ng']).
317
317
}
318
318
319
319
function Route ( template , defaults ) {
320
- this . template = template = template + '#' ;
320
+ this . template = template ;
321
321
this . defaults = defaults || { } ;
322
322
this . urlParams = { } ;
323
323
}
@@ -355,8 +355,8 @@ angular.module('ngResource', ['ng']).
355
355
}
356
356
} ) ;
357
357
358
- // set the url
359
- config . url = url . replace ( / \/ ? # $ / , '' ) . replace ( / \/ * $ / , '' ) ;
358
+ // strip trailing slashes and set the url
359
+ config . url = url . replace ( / \/ + $ / , '' ) ;
360
360
361
361
// set params - delegate param encoding to $http
362
362
forEach ( params , function ( value , key ) {
You can’t perform that action at this time.
0 commit comments