From b7e1fb0515798e1b4f3f2426f6b050951bee2617 Mon Sep 17 00:00:00 2001 From: Fredrik Bonander Date: Wed, 23 Jan 2013 10:53:49 +0100 Subject: fix(resource): Update RegExp to allow urlParams with out leading slash Will allow reoucese to be loaded from a relative path Example: var R = $resource(':path'); R.get({ path : 'data.json' }); Example usage: Load resources in applications not using webserver, ie local webapp in on a tablet. --- src/ngResource/resource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index 81b57f43..484e9b01 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -308,7 +308,7 @@ angular.module('ngResource', ['ng']). this.defaults = defaults || {}; var urlParams = this.urlParams = {}; forEach(template.split(/\W/), function(param){ - if (param && template.match(new RegExp("[^\\\\]:" + param + "\\W"))) { + if (param && (new RegExp("(^|[^\\\\]):" + param + "\\W").test(template))) { urlParams[param] = true; } }); -- cgit v1.2.3