Skip to content

Commit

Permalink
Bump version to 2.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Mar 2, 2018
1 parent f69bb2e commit 1fa4096
Show file tree
Hide file tree
Showing 60 changed files with 2,279 additions and 877 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": "JavaScript tree view / tree grid plugin with support for keyboard, inline editing, filtering, checkboxes, drag'n'drop, and lazy loading",
"version": "2.27.1-0",
"version": "2.28.0",
"main": [
"dist/jquery.fancytree-all-deps.min.js"
],
Expand Down
8 changes: 4 additions & 4 deletions demo/sample-ext-fixed.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
table.fancytree-container.fancytree-ext-fixed tbody tr td:nth-child(1) {
width: 22px;
}

table.fancytree-ext-table tbody tr.fancytree-ext-fixed-hover {
border-color: inherit;
background: #f8fcfe;
Expand Down Expand Up @@ -82,9 +82,9 @@
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f9fd', endColorstr='#c4e8fa', GradientType=0);
outline: 1px solid #B6E6FB;
}

table.fancytree-ext-table {
width: 100%;
width: 100%;
}

table.fancytree-ext-table tbody tr.fancytree-active.fancytree-ext-fixed-hover,
Expand All @@ -103,7 +103,7 @@
}

table.fancytree-ext-table {
width: 100%;
width: 100%;
}

table.fancytree-ext-table tbody tr.fancytree-active.fancytree-ext-fixed-hover,
Expand Down
30 changes: 15 additions & 15 deletions demo/sample-multi-dnd5.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,18 @@
},
dragDrop: function(node, data) {
// This function MUST be defined to enable dropping of items on the tree.
//
// The source data is provided in several formats:
// `data.otherNode` (null if it's not a FancytreeNode from the same page)
// `data.otherNodeData` (Json object; null if it's not a FancytreeNode)
// `data.dataTransfer.getData()`
//
// We may access some meta data to decide what to do:
// `data.hitMode` ("before", "after", or "over").
// `data.dataTransfer.dropEffect`, `.effectAllowed`
// `data.originalEvent.shiftKey`, ...
//
// Example:
//
// The source data is provided in several formats:
// `data.otherNode` (null if it's not a FancytreeNode from the same page)
// `data.otherNodeData` (Json object; null if it's not a FancytreeNode)
// `data.dataTransfer.getData()`
//
// We may access some meta data to decide what to do:
// `data.hitMode` ("before", "after", or "over").
// `data.dataTransfer.dropEffect`, `.effectAllowed`
// `data.originalEvent.shiftKey`, ...
//
// Example:

var dataTransfer = data.dataTransfer,
sourceNodes = data.otherNodeList,
Expand All @@ -121,9 +121,9 @@
o.moveTo(node, data.hitMode);
});
}
node.debug("drop", data);
node.setExpanded();
}
node.debug("drop", data);
node.setExpanded();
}
}
});

Expand Down
Loading

0 comments on commit 1fa4096

Please sign in to comment.