Comparing version 2.1.3 to 2.1.4
{ | ||
"name": "store2", | ||
"version": "2.1.4", | ||
"description": "Better localStorage", | ||
@@ -11,3 +12,2 @@ "keywords": [ | ||
], | ||
"version": "2.1.3", | ||
"author": { | ||
@@ -22,3 +22,4 @@ "name": "Nathan Bubna", | ||
"files": [ | ||
"src" | ||
"src", | ||
"dist" | ||
], | ||
@@ -31,4 +32,4 @@ "main": "dist/store2.js", | ||
"repository": { | ||
"type" : "git", | ||
"url" : "http://github.com/nbubna/store.git" | ||
"type": "git", | ||
"url": "http://github.com/nbubna/store.git" | ||
}, | ||
@@ -60,2 +61,2 @@ "licenses": [ | ||
} | ||
} | ||
} |
@@ -115,3 +115,4 @@ A feature-filled and friendly way to take advantage of localStorage and sessionStorage | ||
* 2013-05-30 [v2.1.2][] (public) - Component support (old component.json is now bower.json) | ||
* 2013-09-08 [v2.1.3][] (public) - Fix require path in component.js | ||
* 2013-09-08 [v2.1.3][] (public) - Remove unnecessary component.js shim | ||
* 2014-03-01 [v2.1.4][] (public) - Package definition and store.overlow.js updates | ||
@@ -123,2 +124,3 @@ [v2.0.3]: https://github.com/nbubna/store/tree/2.0.3 | ||
[v2.1.3]: https://github.com/nbubna/store/tree/2.1.3 | ||
[v2.1.4]: https://github.com/nbubna/store/tree/2.1.4 | ||
@@ -139,1 +141,5 @@ ## Store vs Store | ||
[other]: https://github.com/marcuswestin/store.js/ | ||
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/nbubna/store/trend.png)](https://bitdeli.com/free "Bitdeli Badge") | ||
@@ -45,3 +45,6 @@ /** | ||
if (e.name === 'QUOTA_EXCEEDED_ERR' || | ||
e.name === 'NS_ERROR_DOM_QUOTA_REACHED') { | ||
e.name === 'NS_ERROR_DOM_QUOTA_REACHED' || | ||
e.toString().indexOf("QUOTA_EXCEEDED_ERR") != -1 || | ||
e.toString().indexOf("QuotaExceededError") != -1) { | ||
// the e.toString is needed for IE9 / IE10, cos name is empty there | ||
return _.set(_.overflow(area, true), key, string); | ||
@@ -87,2 +90,2 @@ } | ||
})(window.store, window.store._); | ||
})(window.store, window.store._); |
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
48506
13
942
143