Skip to content

Commit

Permalink
Bumping version to 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Dec 21, 2014
1 parent abd65fe commit a6917f3
Show file tree
Hide file tree
Showing 65 changed files with 3,786 additions and 609 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.6.0",
"version": "2.7.0",
"main": [
"dist/jquery.fancytree-all.min.js"
],
Expand Down
2 changes: 1 addition & 1 deletion demo/sample-ext-clones.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ <h1>Example: 'clones' extension</h1>
</p>
<p>
<b>Status:</b> beta.
<b>Details:</b>
<b>Details:</b>
<a href="https://github.com/mar10/fancytree/wiki/ExtClones"
target="_blank" class="external">ext-clones</a>.
</p>
Expand Down
2 changes: 1 addition & 1 deletion demo/sample-ext-dnd.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h1>Example: 'dnd' extension</h1>
</ul>
<p>
<b>Status</b>: beta.
<b>Details:</b>
<b>Details:</b>
<a href="https://github.com/mar10/fancytree/wiki/ExtDnd"
target="_blank" class="external">ext-dnd</a>.
</p>
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 @@ -113,7 +113,7 @@ <h1>Example: 'edit' extension</h1>
</p>
<p>
<b>Status:</b> beta.
<b>Details:</b>
<b>Details:</b>
<a href="https://github.com/mar10/fancytree/wiki/ExtEdit"
target="_blank" class="external">ext-edit</a>.
</p>
Expand Down
2 changes: 1 addition & 1 deletion demo/sample-ext-filter.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ <h1>Example: 'filter' extension</h1>
</p>
<p>
<b>Status:</b> beta.
<b>Details:</b>
<b>Details:</b>
<a href="https://github.com/mar10/fancytree/wiki/ExtFilter"
target="_blank" class="external">ext-filter</a>.
</p>
Expand Down
2 changes: 1 addition & 1 deletion demo/sample-ext-persist.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ <h1>Example: 'persist' extension</h1>
</p>
<p>
<b>Status:</b> beta.
<b>Details:</b>
<b>Details:</b>
<a href="https://github.com/mar10/fancytree/wiki/ExtPersist"
target="_blank" class="external">ext-persist</a>.
</p>
Expand Down
2 changes: 1 addition & 1 deletion demo/sample-ext-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<h1>Example: 'table' extension</h1>
<div class="description">
<p>
Render tree as a table (aka tree grid) and support keyboard navigation
Render tree as a table (aka tree grid) and support keyboard navigation
in a grid with embedded input controls.
</p>
<p>
Expand Down
4 changes: 2 additions & 2 deletions demo/sample-ext-wide.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@
<h1>Example: 'wide' extension</h1>
<div class="description">
<p>
Stretch the selection bar to 100% of the container width
(<a href="https://github.com/mar10/fancytree/wiki/ExtWide"
Stretch the selection bar to 100% of the container width
(<a href="https://github.com/mar10/fancytree/wiki/ExtWide"
target="_blank" class="external">details...</a>).
</p>
</div>
Expand Down
6 changes: 3 additions & 3 deletions demo/sample-rtl.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@
keydown: function(event, data) {
var KC = $.ui.keyCode,
oe = event.originalEvent;

// Swap LEFT/RIGHT keys
switch( event.which ) {
case KC.LEFT:
oe.keyCode = KC.RIGHT;
oe.keyCode = KC.RIGHT;
oe.which = KC.RIGHT;
break;
case KC.RIGHT:
oe.keyCode = KC.LEFT;
oe.keyCode = KC.LEFT;
oe.which = KC.LEFT;
break;
}
Expand Down
Loading

0 comments on commit a6917f3

Please sign in to comment.