Upgrade to 0.5.6
This commit is contained in:
parent
420e8a10d3
commit
11deec7721
|
|
@ -1,10 +1,16 @@
|
|||
# 版本日志
|
||||
|
||||
### 0.5.6
|
||||
- 调整 Testing.js 模块结构,允许不刷下页面重新抓取内容生成新接口测试
|
||||
- 删除低版本 IE 下 forEach 方法缺失的修补(由于不再支持微软原生浏览器IE8)
|
||||
- 调整部分标签为 HTML5 标签(由于不再支持微软原生浏览器IE8)
|
||||
- 底部增加 Powered by amWiki 签名
|
||||
|
||||
### 0.5.5
|
||||
- 紧急修复0.5.4升级后创建wiki报错问题
|
||||
|
||||
### 0.5.4
|
||||
- 替换 jQuery-1.11 为 jQuery-compat-3.1.0 版
|
||||
- 替换 jQuery-1.11 为 jQuery-compat-3.1.0 版 [#6](https://github.com/TevinLi/amWiki/issues/6 "#6")
|
||||
- 增加低版本浏览器检查,不兼容 jQuery-compat-3.x 的浏览器将给出警告
|
||||
- 增加测试面板进出动画
|
||||
- 增加导航栏展开折叠动画
|
||||
|
|
|
|||
|
|
@ -181,8 +181,8 @@
|
|||
//测试面板普通操作
|
||||
Testing.prototype.bindPanelCtrl = function () {
|
||||
var that = this;
|
||||
//显示隐藏按钮
|
||||
this.$e.testingShow = $('<div class="testing-show">[<span>测试接口</span>]</div>'); //显示隐藏控制按钮
|
||||
//显示隐藏控制按钮
|
||||
this.$e.testingShow = $('<div class="testing-show">[<span>测试接口</span>]</div>');
|
||||
$('#main').append(this.$e.testingShow);
|
||||
//显示隐藏测试面板
|
||||
this.$e.testingShow.on('click', function () {
|
||||
|
|
@ -210,7 +210,7 @@
|
|||
.replace('{{describe}}', '新增参数')
|
||||
.replace('{{keyName}}', '')
|
||||
.replace('{{default}}', '')
|
||||
.replace('{{valueType}}', '')
|
||||
.replace('({{valueType}})', '')
|
||||
.replace('{{required}}', '');
|
||||
that.$e.testingParam.append(pHTML);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue