Skip to content

Commit

Permalink
fixed syntax error (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
increddibelly authored and Julien Maurel committed Nov 21, 2017
1 parent 99eba67 commit 2f0527a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package-lock.json
node_modules/
.idea/
+*.iml
*.iml
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
1.0.4
Fix syntax issue

1.0.3
Fix issue when native storage is not available neither js-cookies

1.0.2
Fix isEmpty with false boolean

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-storage",
"version": "1.0.3",
"version": "1.0.4",
"main": "js.storage.js",
"description": "Plugin that simplify access to storages (HTML5) & cookies, add namespace storage and provide compatiblity for old browsers",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions js.storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Project home:
* https://github.com/julien-maurel/js-storage
*
* Version: 1.0.3
* Version: 1.0.4
*/
(function (factory) {
var registeredInModuleLoader = false;
Expand Down Expand Up @@ -418,7 +418,7 @@

// Check if storages are natively available on browser and check is js-cookie is present
var storage_available = _testStorage('localStorage');
var cookies_available = typeof Cookies !== 'undefined';*
var cookies_available = typeof Cookies !== 'undefined';

// Namespace object
var storage = {
Expand Down
2 changes: 1 addition & 1 deletion js.storage.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-storage",
"version": "1.0.3",
"version": "1.0.4",
"author": {
"name": "Julien Maurel",
"url": "https://github.com/julien-maurel"
Expand Down

0 comments on commit 2f0527a

Please sign in to comment.