Skip to content

Commit

Permalink
Build v2.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Niels Dequeker committed Feb 12, 2017
1 parent 1f1f010 commit 9840721
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
#2.22.3

* Expand-on-hover event not calling toggle callback function [#899](https://github.com/angular-ui-tree/angular-ui-tree/issues/899)

#2.22.2

* Update devDependencies
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "angular-ui-tree",
"version": "2.22.2",
"version": "2.22.3",
"homepage": "https://github.com/angular-ui-tree/angular-ui-tree",
"authors": [
"Jim Liu <https://github.com/JimLiu>",
Expand Down
4 changes: 3 additions & 1 deletion dist/angular-ui-tree.js
@@ -1,5 +1,5 @@
/**
* @license Angular UI Tree v2.22.2
* @license Angular UI Tree v2.22.3
* (c) 2010-2016. https://github.com/angular-ui-tree/angular-ui-tree
* License: MIT
*/
Expand Down Expand Up @@ -1150,6 +1150,7 @@
if (targetNode.collapsed) {
if (scope.expandOnHover === true || (angular.isNumber(scope.expandOnHover) && scope.expandOnHover === 0)) {
targetNode.collapsed = false;
targetNode.$treeScope.$callbacks.toggle(false, targetNode);
} else if (scope.expandOnHover !== false && angular.isNumber(scope.expandOnHover) && scope.expandOnHover > 0) {

//Triggering expansion.
Expand All @@ -1161,6 +1162,7 @@
{
scope.$callbacks.expandTimeoutEnd();
targetNode.collapsed = false;
targetNode.$treeScope.$callbacks.toggle(false, targetNode);
}, scope.expandOnHover);
}
}
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-ui-tree.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "angular-ui-tree",
"version": "2.22.2",
"version": "2.22.3",
"description": "An AngularJS UI component that can sort nested lists, provides drag & drop support and doesn't depend on jQuery",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion source/main.js
@@ -1,5 +1,5 @@
/**
* @license Angular UI Tree v2.22.2
* @license Angular UI Tree v2.22.3
* (c) 2010-2016. https://github.com/angular-ui-tree/angular-ui-tree
* License: MIT
*/
Expand Down

0 comments on commit 9840721

Please sign in to comment.