-
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 #3 from kadbbz/dev
Merge dev to master
- Loading branch information
Showing
39 changed files
with
25,336 additions
and
9 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
Large diffs are not rendered by default.
Oops, something went wrong.
188 changes: 188 additions & 0 deletions
188
app/src/main/assets/hzg_bundle_cache_8.0.103.0/forguncy.js
Large diffs are not rendered by default.
Oops, something went wrong.
130 changes: 130 additions & 0 deletions
130
app/src/main/assets/hzg_bundle_cache_8.0.103.0/forguncyCalc.js
Large diffs are not rendered by default.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
app/src/main/assets/hzg_bundle_cache_8.0.103.0/forguncyChart.js
Large diffs are not rendered by default.
Oops, something went wrong.
48 changes: 48 additions & 0 deletions
48
app/src/main/assets/hzg_bundle_cache_8.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_8.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.
135 changes: 135 additions & 0 deletions
135
app/src/main/assets/hzg_bundle_cache_8.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_8.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_8.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.