angular-data
Advanced tools
Comparing version 1.0.0-rc.2 to 1.0.0-rc.2-1
@@ -0,5 +1,10 @@ | ||
##### 1.0.0-rc.2-1 - 25 September 2014 | ||
###### Backwards compatible bug fixes | ||
- #191 - Invalid reference in _eject | ||
##### 1.0.0-rc.2 - 25 September 2014 | ||
###### Backwards compatible API changes | ||
- #145 - Add "useClass" option to inject, find, findAll, create | ||
###### Backwards compatible bug fixes | ||
- #191 - Add "useClass" option to inject, find, findAll, create | ||
- #155 - Allow deserialize and serialize to be configured per-method as well | ||
@@ -6,0 +11,0 @@ - #159 - Find which items from collection have changed with lastModified |
{ | ||
"name": "angular-data", | ||
"description": "Data store for Angular.js.", | ||
"version": "1.0.0-rc.2", | ||
"version": "1.0.0-rc.2-1", | ||
"homepage": "http://angular-data.pseudobry.com", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -11,4 +11,4 @@ ## angular-data [![Stories in Backlog](https://badge.waffle.io/jmdobry/angular-data.svg?label=backlog&title=Backlog)](http://waffle.io/jmdobry/angular-data) [![Stories in Ready](https://badge.waffle.io/jmdobry/angular-data.svg?label=ready&title=Ready)](http://waffle.io/jmdobry/angular-data) [![Stories in progress](https://badge.waffle.io/jmdobry/angular-data.svg?label=in%20progress&title=In%20Progress)](http://waffle.io/jmdobry/angular-data) | ||
__Latest Release:__ [1.0.0-rc.1](http://angular-data.pseudobry.com/) | ||
__master:__ [1.0.0-rc.2](http://angular-data-next.pseudobry.com/) | ||
__Latest Release:__ [1.0.0-rc.2-1](http://angular-data.pseudobry.com/) | ||
__master:__ [1.0.0-rc.2-1](http://angular-data-next.pseudobry.com/) | ||
@@ -15,0 +15,0 @@ Angular-data is in a 1.0.0 Beta. The API is rather stable and angular-data is well tested. |
@@ -7,2 +7,3 @@ function errorPrefix(resourceName, id) { | ||
var item; | ||
var DS = this; | ||
var found = false; | ||
@@ -9,0 +10,0 @@ for (var i = 0; i < resource.collection.length; i++) { |
@@ -20,3 +20,5 @@ function errorPrefix(resourceName) { | ||
}); | ||
item[def.localField].splice(index, 1); | ||
if (index !== undefined) { | ||
item[def.localField].splice(index, 1); | ||
} | ||
} else if (item[def.localField] === linked) { | ||
@@ -23,0 +25,0 @@ delete item[def.localField]; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
561113
13322