Skip to content

Commit

Permalink
Release v0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
brettshollenberger committed Mar 4, 2014
1 parent 3c8c950 commit 8a02caf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ActiveResource",
"version": "0.7.3",
"version": "0.7.4",
"authors": [
"Brett Shollenberger <brett.shollenberger@gmail.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/ng-active-resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,7 @@ angular.module('ActiveResource').provider('ARGET', function () {
if (queryableByParams(url, terms)) {
url = URLify(url, terms);
} else if (Object.keys(terms).length) {
url = url.replace(/\/\:\w+/, '').replace(/\:\w+/g, '');
url = url.replace(/\/\:[a-zA-Z_]+/g, '').replace(/\:[a-zA-Z_]+/g, '');
config.params = terms;
}
return $http.get(url, config).then(function (response) {
Expand Down
2 changes: 1 addition & 1 deletion dist/ng-active-resource.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ActiveResource",
"version": "0.7.3",
"version": "0.7.4",
"description": "RESTful resource modeling",
"main": "index.js",
"author": "Brett Shollenberger <brett@facultycreative.com>",
Expand Down

0 comments on commit 8a02caf

Please sign in to comment.