diff --git a/README.md b/README.md
index 0ad4cea..a5e1258 100644
--- a/README.md
+++ b/README.md
@@ -155,6 +155,8 @@ These advanced config options are also available:
* `expandBtnHTML` The HTML text used to generate a list item expand button (default `''`)
* `collapseBtnHTML` The HTML text used to generate a list item collapse button (default `''`)
* `includeContent` Enable or disable the content in output (default `false`)
+* `listRenderer` The callback for customizing final list output (default `function(children, options) { ... }` - see defaults in code)
+* `itemRenderer` The callback for customizing final item output (default `function(item_attrs, content, children, options) { ... }` - see defaults in code)
* `json` JSON string used to dynamically generate a Nestable list. This is the same format as the `serialize()` output
**Inspect the [Nestable Demo](http://ramonsmit.github.io/Nestable/) for guidance.**
@@ -163,6 +165,7 @@ These advanced config options are also available:
### 6th October 2014
+* [zemistr] Created listRenderer and itemRenderer. Refactored build from JSON.
* [zemistr] Added support for adding classes via input data. (```[{"id": 1, "content": "First item", "classes": ["dd-nochildren", "dd-nodrag", ...] }, ... ]```)
### 3th October 2014
diff --git a/bower.json b/bower.json
index b2c51b8..754ebaf 100644
--- a/bower.json
+++ b/bower.json
@@ -1,6 +1,6 @@
{
"name": "nestable2",
- "version": "1.1.1",
+ "version": "1.2.1",
"homepage": "https://github.com/RamonSmit/Nestable",
"authors": [
"Ramon Smit <@_RamonSmit>",
diff --git a/index.html b/index.html
index 99f7255..f784cdc 100644
--- a/index.html
+++ b/index.html
@@ -500,24 +500,24 @@