Skip to content

Commit dd003eb

Browse files
author
zTreeAPI
committed
replace 3.5.47
1 parent b47220c commit dd003eb

18 files changed

+39
-106
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
jQuery Tree Plugin ---- zTree
22
============
3-
last version : 3.5.47
3+
last version : 3.5.48
44

55

66
**Donate to zTree** : http://www.treejs.cn/v3/donate.php

api/API_cn.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<div class="ieSuggest">浏览本网站建议您使用 Chrome、FireFox、Opera、IE9 等浏览器(只要不是 IE6 7 8 就行), 速度会更快,画面会更炫!</div>
3636
<div class="google_plus"><g:plusone></g:plusone></div>
3737
<div class="header-text">
38-
<h1><em>zTree v3.5.46 API 文档</em></h1><p></p>
38+
<h1><em>zTree v3.5.48 API 文档</em></h1><p></p>
3939
<p>all.js = core + excheck + exedit ( 不包括 exhide ); 发现错误请及时通知,谢谢。</p>
4040
</div>
4141
<ul class="shortcuts language" style="top:0;">

api/API_en.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<div class="ieSuggest">If you use the Chrome / FireFox / Opera / IE9 browser will be even more dazzling effect!</div>
3535
<div class="google_plus"><g:plusone></g:plusone></div>
3636
<div class="header-text">
37-
<h1><em>zTree v3.5.46 API Document</em></h1><p></p>
37+
<h1><em>zTree v3.5.48 API Document</em></h1><p></p>
3838
<p>all.js = core + excheck + exedit ( without exhide ); if you found some mistakes please contact me.</p>
3939
</div>
4040
<ul class="shortcuts language" style="top:0;">

api/apiCss/jquery.ztree.core.js

Lines changed: 1 addition & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/cn/exedit/drag.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<script type="text/javascript" src="../../../js/jquery.ztree.excheck.js"></script>
1111
<script type="text/javascript" src="../../../js/jquery.ztree.exedit.js"></script>
1212
<SCRIPT type="text/javascript">
13+
<!--
1314
var setting = {
1415
edit: {
1516
enable: true,
@@ -92,6 +93,7 @@
9293
$("#inner").bind("change", setCheck);
9394
$("#next").bind("change", setCheck);
9495
});
96+
//-->
9597
</SCRIPT>
9698
</HEAD>
9799

demo/cn/super/oneclick.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<!-- <script type="text/javascript" src="../../../js/jquery.ztree.excheck.js"></script>
1111
<script type="text/javascript" src="../../../js/jquery.ztree.exedit.js"></script>-->
1212
<SCRIPT type="text/javascript">
13+
<!--
1314
var setting = {
1415
view: {
1516
dblClickExpand: false,
@@ -52,6 +53,7 @@
5253
$(document).ready(function(){
5354
$.fn.zTree.init($("#treeDemo"), setting, zNodes);
5455
});
56+
//-->
5557
</SCRIPT>
5658
<style type="text/css">
5759
.ztree li button.switch {visibility:hidden; width:1px;}

js/jquery.ztree.all.js

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
21
/*
3-
* JQuery zTree core * v3.5.47
2+
* JQuery zTree core
3+
* v3.5.48
44
* http://treejs.cn/
55
*
66
* Copyright (c) 2010 Hunter.z
@@ -10,6 +10,7 @@
1010
*
1111
* Date: 2020-11-21
1212
*/
13+
1314
(function ($) {
1415
var settings = {}, roots = {}, caches = {},
1516
//default consts of core
@@ -2017,7 +2018,8 @@
20172018
consts = zt.consts;
20182019
})(jQuery);
20192020
/*
2020-
* JQuery zTree excheck * v3.5.47
2021+
* JQuery zTree excheck
2022+
* v3.5.48
20212023
* http://treejs.cn/
20222024
*
20232025
* Copyright (c) 2010 Hunter.z
@@ -2027,6 +2029,7 @@
20272029
*
20282030
* Date: 2020-11-21
20292031
*/
2032+
20302033
(function ($) {
20312034
//default consts of excheck
20322035
var _consts = {
@@ -2667,7 +2670,8 @@
26672670
}
26682671
})(jQuery);
26692672
/*
2670-
* JQuery zTree exedit * v3.5.47
2673+
* JQuery zTree exedit
2674+
* v3.5.48
26712675
* http://treejs.cn/
26722676
*
26732677
* Copyright (c) 2010 Hunter.z
@@ -2677,6 +2681,7 @@
26772681
*
26782682
* Date: 2020-11-21
26792683
*/
2684+
26802685
(function ($) {
26812686
//default consts of exedit
26822687
var _consts = {
@@ -3870,4 +3875,4 @@
38703875
}
38713876
return (!root.curEditNode) && (_uCanDo ? _uCanDo.apply(view, arguments) : true);
38723877
}
3873-
})(jQuery);
3878+
})(jQuery);

js/jquery.ztree.all.min.js

Lines changed: 3 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/jquery.ztree.core.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
2-
* JQuery zTree core * v3.5.47
2+
* JQuery zTree core
3+
* v3.5.48
34
* http://treejs.cn/
45
*
56
* Copyright (c) 2010 Hunter.z
@@ -9,6 +10,7 @@
910
*
1011
* Date: 2020-11-21
1112
*/
13+
1214
(function ($) {
1315
var settings = {}, roots = {}, caches = {},
1416
//default consts of core

js/jquery.ztree.core.min.js

Lines changed: 1 addition & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)