Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
fixes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiefu committed Sep 17, 2014
1 parent f49d739 commit f592603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core-localstorage.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
// be escaped, i.e. "null")
// in this case we save any non-null current (default) value
if (v === null) {
if (this.value !== null) {
if (this.value != null) {
this.save();
}
} else {
Expand Down

0 comments on commit f592603

Please sign in to comment.