Skip to content

Commit

Permalink
Fixes unresponsive store after error in listener in FF
Browse files Browse the repository at this point in the history
  • Loading branch information
arqex committed Jul 3, 2017
1 parent e5a9ba8 commit 750e38a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Freezer Changelog

###v0.13.0
* Fixes bug making apps unresponsive in FF when an error happens in a listener.

###v0.12.2
* Fixes duplicated detached warnings in non detached nodes.

Expand Down
4 changes: 2 additions & 2 deletions build/freezer.js
@@ -1,4 +1,4 @@
/* freezer-js v0.12.1 (29-5-2017)
/* freezer-js v0.13.0 (3-7-2017)
* https://github.com/arqex/freezer
* By arqex
* License: MIT
Expand Down Expand Up @@ -118,10 +118,10 @@ var Utils = {
;

function flushQueue () {
dirty = false;
while (fn = queue.shift()) {
fn();
}
dirty = false;
}

function nextTick (fn) {
Expand Down

0 comments on commit 750e38a

Please sign in to comment.