forked from zTree/zTree_v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed bug: Sometimes, the parameter 'isSilent' of selectNode() method…
… was not work .
- Loading branch information
ztree
committed
Jun 6, 2016
1 parent
e2ff2f5
commit 1cab309
Showing
16 changed files
with
48 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
/* | ||
* JQuery zTree core v3.5.23 | ||
* JQuery zTree core v3.5.24 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -9,7 +9,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2016-04-01 | ||
* Date: 2016-06-06 | ||
*/ | ||
(function($){ | ||
var settings = {}, roots = {}, caches = {}, | ||
|
@@ -1772,7 +1772,7 @@ | |
addFlag = setting.view.selectedMulti && addFlag; | ||
if (node.parentTId) { | ||
view.expandCollapseParentNode(setting, node.getParentNode(), true, false, showNodeFocus); | ||
} else { | ||
} else if (!isSilent) { | ||
try{$$(node, setting).focus().blur();}catch(e){} | ||
} | ||
view.selectNode(setting, node, addFlag); | ||
|
@@ -1821,7 +1821,7 @@ | |
consts = zt.consts; | ||
})(jQuery); | ||
/* | ||
* JQuery zTree excheck v3.5.23 | ||
* JQuery zTree excheck v3.5.24 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -1830,7 +1830,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2016-04-01 | ||
* Date: 2016-06-06 | ||
*/ | ||
(function($){ | ||
//default consts of excheck | ||
|
@@ -2449,7 +2449,7 @@ | |
} | ||
})(jQuery); | ||
/* | ||
* JQuery zTree exedit v3.5.23 | ||
* JQuery zTree exedit v3.5.24 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -2458,7 +2458,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2016-04-01 | ||
* Date: 2016-06-06 | ||
*/ | ||
(function($){ | ||
//default consts of exedit | ||
|
Oops, something went wrong.