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.
Add className to <span> tag which show the node's name
- Loading branch information
zTree
committed
Nov 15, 2015
1 parent
a6f9002
commit 74045a8
Showing
16 changed files
with
135 additions
and
110 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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
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.19.1 | ||
* JQuery zTree core v3.5.19.2 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -9,7 +9,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2015-10-26 | ||
* Date: 2015-11-15 | ||
*/ | ||
(function($){ | ||
var settings = {}, roots = {}, caches = {}, | ||
|
@@ -19,7 +19,8 @@ | |
BUTTON: "button", | ||
LEVEL: "level", | ||
ICO_LOADING: "ico_loading", | ||
SWITCH: "switch" | ||
SWITCH: "switch", | ||
NAME: 'node_name' | ||
}, | ||
event: { | ||
NODECREATED: "ztree_nodeCreated", | ||
|
@@ -1226,6 +1227,7 @@ | |
html.push("<span id='", node.tId, consts.id.ICON, | ||
"' title='' treeNode", consts.id.ICON," class='", view.makeNodeIcoClass(setting, node), | ||
"' style='", view.makeNodeIcoStyle(setting, node), "'></span><span id='", node.tId, consts.id.SPAN, | ||
"' class='", consts.className.NAME, | ||
"'>",name,"</span>"); | ||
}, | ||
makeDOMNodeLine: function(html, setting, node) { | ||
|
@@ -1794,7 +1796,7 @@ | |
consts = zt.consts; | ||
})(jQuery); | ||
/* | ||
* JQuery zTree excheck v3.5.19.1 | ||
* JQuery zTree excheck v3.5.19.2 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -1803,7 +1805,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2015-10-26 | ||
* Date: 2015-11-15 | ||
*/ | ||
(function($){ | ||
//default consts of excheck | ||
|
@@ -2422,7 +2424,7 @@ | |
} | ||
})(jQuery); | ||
/* | ||
* JQuery zTree exedit v3.5.19.1 | ||
* JQuery zTree exedit v3.5.19.2 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -2431,7 +2433,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2015-10-26 | ||
* Date: 2015-11-15 | ||
*/ | ||
(function($){ | ||
//default consts of exedit | ||
|
Large diffs are not rendered by default.
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,5 +1,5 @@ | ||
/* | ||
* JQuery zTree core v3.5.19.1 | ||
* JQuery zTree core v3.5.19.2 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -8,7 +8,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2015-10-26 | ||
* Date: 2015-11-15 | ||
*/ | ||
(function($){ | ||
var settings = {}, roots = {}, caches = {}, | ||
|
@@ -18,7 +18,8 @@ | |
BUTTON: "button", | ||
LEVEL: "level", | ||
ICO_LOADING: "ico_loading", | ||
SWITCH: "switch" | ||
SWITCH: "switch", | ||
NAME: 'node_name' | ||
}, | ||
event: { | ||
NODECREATED: "ztree_nodeCreated", | ||
|
@@ -1225,6 +1226,7 @@ | |
html.push("<span id='", node.tId, consts.id.ICON, | ||
"' title='' treeNode", consts.id.ICON," class='", view.makeNodeIcoClass(setting, node), | ||
"' style='", view.makeNodeIcoStyle(setting, node), "'></span><span id='", node.tId, consts.id.SPAN, | ||
"' class='", consts.className.NAME, | ||
"'>",name,"</span>"); | ||
}, | ||
makeDOMNodeLine: function(html, setting, node) { | ||
|
Large diffs are not rendered by default.
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,5 +1,5 @@ | ||
/* | ||
* JQuery zTree excheck v3.5.19.1 | ||
* JQuery zTree excheck v3.5.19.2 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -8,7 +8,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2015-10-26 | ||
* Date: 2015-11-15 | ||
*/ | ||
(function($){ | ||
//default consts of excheck | ||
|
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,5 +1,5 @@ | ||
/* | ||
* JQuery zTree exedit v3.5.19.1 | ||
* JQuery zTree exedit v3.5.19.2 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -8,7 +8,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2015-10-26 | ||
* Date: 2015-11-15 | ||
*/ | ||
(function($){ | ||
//default consts of exedit | ||
|
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,5 +1,5 @@ | ||
/* | ||
* JQuery zTree exHideNodes v3.5.19.1 | ||
* JQuery zTree exHideNodes v3.5.19.2 | ||
* http://zTree.me/ | ||
* | ||
* Copyright (c) 2010 Hunter.z | ||
|
@@ -8,7 +8,7 @@ | |
* http://www.opensource.org/licenses/mit-license.php | ||
* | ||
* email: [email protected] | ||
* Date: 2015-10-26 | ||
* Date: 2015-11-15 | ||
*/ | ||
(function($){ | ||
//default init node of exLib | ||
|
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