Skip to content

Commit

Permalink
Bumping version to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Sep 21, 2014
1 parent 77959bd commit b8ffe78
Show file tree
Hide file tree
Showing 42 changed files with 766 additions and 530 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jquery.fancytree",
"description": "Fancytree is a JavaScript tree view plugin for jQuery with support for persistence, keyboard, checkboxes, drag'n'drop, and lazy loading.",
"version": "2.3.0",
"version": "2.4.0",
"main": [
"dist/jquery.fancytree-all.min.js"
],
Expand Down
16 changes: 8 additions & 8 deletions demo/sample-api.html
Original file line number Diff line number Diff line change
Expand Up @@ -258,14 +258,14 @@
newline: true,
code: function(){
var tree = $("#tree").fancytree("getTree"),
selNodes = tree.getSelectedNodes();
selNodes.forEach(function(node) {
while( node.hasChildren() ) {
node.getFirstChild().moveTo(node.parent, "child");
}
node.remove();
});
selNodes = tree.getSelectedNodes();

selNodes.forEach(function(node) {
while( node.hasChildren() ) {
node.getFirstChild().moveTo(node.parent, "child");
}
node.remove();
});
}
});
});
Expand Down
2 changes: 1 addition & 1 deletion demo/sample-ext-edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ <h1>Example: 'edit' extension</h1>
<b>Details:</b> <a href="https://github.com/mar10/fancytree/wiki/ExtEdit">ext-edit</a>.
</p>
</div>

<div id="tree">
</div>

Expand Down
6 changes: 3 additions & 3 deletions demo/sample-multi-ext.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@
});

/*
* Tooltips
* Tooltips
*/
$("#tree").tooltip({
content: function () {
content: function () {
return $(this).attr("title");
}
}
});

/*
Expand Down
2 changes: 1 addition & 1 deletion demo/sample-multiline.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
-ms-display: flex;
display: flex;
}
*/
*/
span.ws-wrap span.fancytree-title {
white-space: normal;
}
Expand Down
Loading

0 comments on commit b8ffe78

Please sign in to comment.