summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilson Page <wilsonpage@me.com>2013-10-15 11:12:29 +0100
committerWilson Page <wilsonpage@me.com>2013-10-15 11:12:29 +0100
commitd25f1dc06c139eba36e8407c5ed58914b49e65d5 (patch)
tree17ef4aa4e9382888db8b57b2ad661b6178cbfd63
parentbe113a3356b011cd4fc05cb4c68a1c19a0c12fc1 (diff)
downloadfastdom-d25f1dc06c139eba36e8407c5ed58914b49e65d5.zip
fastdom-d25f1dc06c139eba36e8407c5ed58914b49e65d5.tar.gz
fastdom-d25f1dc06c139eba36e8407c5ed58914b49e65d5.tar.bz2
0.8.1v0.8.1
-rw-r--r--History.md22
-rw-r--r--bower.json2
-rw-r--r--component.json2
-rw-r--r--package.json2
4 files changed, 17 insertions, 11 deletions
diff --git a/History.md b/History.md
index a21d6c3..f51b4c2 100644
--- a/History.md
+++ b/History.md
@@ -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`
diff --git a/bower.json b/bower.json
index 2319abf..36ac347 100644
--- a/bower.json
+++ b/bower.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/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"