Skip to content

Commit

Permalink
Merge pull request joseph#97 from sguha00/android_cookie_fix
Browse files Browse the repository at this point in the history
The browser in Android 2.3.3 doesn't ignore spaces around the "=" causin...
  • Loading branch information
joseph committed Apr 16, 2012
2 parents fea78fb + 5d82acc commit 6dbb533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controls/placesaver.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Monocle.Controls.PlaceSaver = function (bookId) {
expires = "; expires="+d.toGMTString();
}
var path = "; path=/";
document.cookie = p.prefix + key + " = " + value + expires + path;
document.cookie = p.prefix + key + "=" + value + expires + path;
return value;
}

Expand Down

0 comments on commit 6dbb533

Please sign in to comment.