diff --git a/CHANGELOG.md b/CHANGELOG.md
index 36272a93def..9ca61019b17 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
-## HEAD
+## [0.8.14](https://github.com/warpech/jquery-handsontable/tree/v0.8.14) (Mar 14, 2013)
Features:
-- now, your data source can be a function! See the last section of the [Array, object and function data sources](http://www.handsontable.com/demo/datasources.html) page for examples (fixes [#471](https://github.com/warpech/jquery-handsontable/pull/471), [#435](https://github.com/warpech/jquery-handsontable/pull/435), [#261](https://github.com/warpech/jquery-handsontable/issues/261))
-- also the column `data` property can be a function as well! Again, see the last section of the [data sources](http://www.handsontable.com/demo/datasources.html) page for examples
+- now, your data source can be a function! See the last section of the [Array, object and function data sources](http://handsontable.com/demo/datasources.html) page for examples (fixes [#471](https://github.com/warpech/jquery-handsontable/pull/471), [#435](https://github.com/warpech/jquery-handsontable/pull/435), [#261](https://github.com/warpech/jquery-handsontable/issues/261))
+- also the column `data` property can be a function as well! Again, see the last section of the [data sources](http://handsontable.com/demo/datasources.html) page for examples
- new methods: `countEmptyRows`, `countEmptyCols`, `isEmptyRow`, `isEmptyCol`. You can define your own functions for `isEmptyRow` and `isEmptyCol` (see [README.md](https://github.com/warpech/jquery-handsontable) for details)
Bugfix:
diff --git a/demo/js/samples.js b/demo/js/samples.js
index 04ee5f1dfa1..f90c51fa717 100644
--- a/demo/js/samples.js
+++ b/demo/js/samples.js
@@ -22,7 +22,7 @@ function trimCodeBlock(code, pad) {
offset++;
}
for (i = 0, ilen = code.length; i < ilen; i++) {
- code[i] = Array(pad + 1).join(' ') + code[i].substring(offset);
+ code[i] = new Array(pad + 1).join(' ') + code[i].substring(offset);
}
return code;
}
@@ -59,6 +59,11 @@ $(function () {
css += '\n\
\n';
}
+ if (window.Backbone) {
+ css += '\n\
+\n\
+\n';
+ }
css += '