-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from opal/staging
Refactor the cookie module
- Loading branch information
Showing
3 changed files
with
70 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## 0.3.2 | ||
* Cookie: refactor the module | ||
* Note in documentation it's available as `$document.cookies` and it's the preferred way to access it | ||
* Always encode a cookie with JSON, unless a new parameter `raw:` is provided | ||
|
||
## 0.3.1 | ||
* Element#inner_dom: Reduce flickering - first build tree, then insert it | ||
* NodeSet#to_a to be aliased to #to_ary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Browser | ||
VERSION = '0.3.1' | ||
VERSION = '0.3.2' | ||
end |