diff options
author | Wilson Page <wilsonpage@me.com> | 2013-10-15 11:12:29 +0100 |
---|---|---|
committer | Wilson Page <wilsonpage@me.com> | 2013-10-15 11:12:29 +0100 |
commit | d25f1dc06c139eba36e8407c5ed58914b49e65d5 (patch) | |
tree | 17ef4aa4e9382888db8b57b2ad661b6178cbfd63 | |
parent | be113a3356b011cd4fc05cb4c68a1c19a0c12fc1 (diff) | |
download | fastdom-d25f1dc06c139eba36e8407c5ed58914b49e65d5.zip fastdom-d25f1dc06c139eba36e8407c5ed58914b49e65d5.tar.gz fastdom-d25f1dc06c139eba36e8407c5ed58914b49e65d5.tar.bz2 |
0.8.1v0.8.1
-rw-r--r-- | History.md | 22 | ||||
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | package.json | 2 |
4 files changed, 17 insertions, 11 deletions
@@ -1,20 +1,26 @@ +0.8.1 / 2013-10-15 +================== + + * change - if `fastdom.onError` handler is registered, errors are caught and handler is called. + 0.8.0 / 2013-10-14 ================== - * change to a rAF loop technique of emtying frame queue to prevent frame conflicts - * add ability to call `FastDom#defer` with no frame argument to schedule job for next free frame + * change - to a rAF loop technique of emtying frame queue to prevent frame conflicts + * add - ability to call `FastDom#defer` with no frame argument to schedule job for next free frame + * change - errors not caught by default 0.7.1 / 2013-10-05 ================== - * fix memory leaks with undeleted refs - * fix context not being passed to `.defer` jobs + * fix - memory leaks with undeleted refs + * fix - context not being passed to `.defer` jobs 0.7.0 / 2013-10-05 ================== - * add `FastDom#clear` clears read, write and defer jobs by id - * remove `FastDom#clearRead` - * remove `FastDom#clearWrite` - * change directory structure by removing `/lib` + * add - `FastDom#clear` clears read, write and defer jobs by id + * remove - `FastDom#clearRead` + * remove - `FastDom#clearWrite` + * change - directory structure by removing `/lib` @@ -1,7 +1,7 @@ { "name": "fastdom", "description": "Eliminates layout thrashing by batching DOM read/write operations", - "version": "0.8.0", + "version": "0.8.1", "main": "index.js", "scripts": [ "index.js" diff --git a/component.json b/component.json index a363a66..ae821b2 100644 --- a/component.json +++ b/component.json @@ -1,7 +1,7 @@ { "name": "fastdom", "description": "Eliminates layout thrashing by batching DOM read/write operations", - "version": "0.8.0", + "version": "0.8.1", "main": "index.js", "scripts": [ "index.js" diff --git a/package.json b/package.json index 84ddb9a..0e48379 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "fastdom", "description": "Eliminates layout thrashing by batching DOM read/write operations", - "version": "0.8.0", + "version": "0.8.1", "main": "index.js", "scripts": { "test": "jshint . && mocha-phantomjs test/index.html" |