Skip to content

Commit

Permalink
Bumping to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
arqex committed Oct 26, 2015
1 parent cced37b commit a0837af
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Freezer Changelog
###v0.9.3
* Using messages for nextTick implementation only in browsers. Needed to make freezer work with react native.

###v0.9.2
* Not triggering events in all parents when a node have more than one parent.
*

###v0.9.1
* Fixed specialEvents problem in build

Expand Down
4 changes: 2 additions & 2 deletions build/freezer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* freezer-js v0.9.2 (24-10-2015)
/* freezer-js v0.9.3 (26-10-2015)
* https://github.com/arqex/freezer
* By arqex
* License: MIT
Expand Down Expand Up @@ -68,7 +68,7 @@ var Utils = {
var queue = [],
dirty = false,
fn,
hasPostMessage = !!global.postMessage,
hasPostMessage = !!global.postMessage && (typeof Window != 'undefined') && (global instanceof Window),
messageName = 'nexttick',
trigger = (function () {
return hasPostMessage
Expand Down
Loading

0 comments on commit a0837af

Please sign in to comment.