-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from kadbbz/dev-1.14.0
v1.14.0-release
- Loading branch information
Showing
63 changed files
with
31,316 additions
and
110 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
Large diffs are not rendered by default.
Oops, something went wrong.
208 changes: 208 additions & 0 deletions
208
app/src/main/assets/hzg_bundle_cache_9.0.103.0/forguncy.js
Large diffs are not rendered by default.
Oops, something went wrong.
133 changes: 133 additions & 0 deletions
133
app/src/main/assets/hzg_bundle_cache_9.0.103.0/forguncyCalc.js
Large diffs are not rendered by default.
Oops, something went wrong.
53 changes: 53 additions & 0 deletions
53
app/src/main/assets/hzg_bundle_cache_9.0.103.0/forguncyChart.js
Large diffs are not rendered by default.
Oops, something went wrong.
49 changes: 49 additions & 0 deletions
49
app/src/main/assets/hzg_bundle_cache_9.0.103.0/importExcel.js
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
app/src/main/assets/hzg_bundle_cache_9.0.103.0/inputMan.js
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
133 changes: 133 additions & 0 deletions
133
app/src/main/assets/hzg_bundle_cache_9.0.103.0/spread.js
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
app/src/main/assets/hzg_scripts_cache_9.0.103.0/Babel/7.10.4/polyfill.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
41 changes: 41 additions & 0 deletions
41
app/src/main/assets/hzg_scripts_cache_9.0.103.0/Bootstrap/ReadMe.txt
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
tooltip和dropdown是bootstrap库的一部分 | ||
http://www.bootcss.com/ | ||
|
||
一. JS | ||
在bootstrap代码包中 | ||
tooltip.js文件来源:\js\tooltip.js | ||
dropdown.js文件来源:\js\dropdown.js | ||
|
||
a. tooltip | ||
在Forguncy,用于显示validation tooltip | ||
为了不干扰用户引用bootstrap库, | ||
在文件中做了如下修改: | ||
1. 注释了// TOOLTIP PLUGIN DEFINITION 部分代码 | ||
2. 注释了// TOOLTIP NO CONFLICT 部分代码 | ||
3. 将Tooltip类加入Forguncy命名空间 | ||
//Add by Forguncy | ||
// =================== | ||
if (Forguncy) { | ||
Forguncy.Tooltip = Tooltip; | ||
} | ||
|
||
b. dropdown | ||
在Forguncy,用于current user cell type | ||
为了不干扰用户引用bootstrap库, | ||
在文件中做了如下修改: | ||
1. 注释了// DROPDOWN PLUGIN DEFINITION 部分代码 | ||
2. 注释了// DROPDOWN NO CONFLICT 部分代码 | ||
3. 将属性值dropdown改为_dropdown | ||
var toggle = '[data-toggle=_dropdown]' | ||
|
||
二. CSS | ||
bootstrap.css文件来源:\dist\css\bootstrap.css | ||
css文件删除了与tooltip,dropdown无关部分,并做了如下修改 | ||
|
||
.tooltip.top .tooltip-arrow { | ||
border-top-color: #000; ->#f00 | ||
} | ||
|
||
.tooltip.bottom .tooltip-arrow { | ||
border-bottom-color: #000; ->#f00 | ||
} |
Oops, something went wrong.