Commit 57262f95 by xuxueli

修复新版本chrome滚动到顶部失效问题

parent 76cf3649
## 《分布式任务调度平台XXL-JOB》 ## 《分布式任务调度平台XXL-JOB》
...@@ -1127,6 +1127,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段 ...@@ -1127,6 +1127,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
### 6.21 版本 V1.9.1 特性[迭代中] ### 6.21 版本 V1.9.1 特性[迭代中]
- 1、修复打包部署时资源文件乱码问题; - 1、修复打包部署时资源文件乱码问题;
- 2、修复新版本chrome滚动到顶部失效问题;
### TODO LIST ### TODO LIST
- 1、任务权限管理:执行器为粒度分配权限,核心操作校验权限; - 1、任务权限管理:执行器为粒度分配权限,核心操作校验权限;
......
...@@ -68,7 +68,7 @@ $(function(){ ...@@ -68,7 +68,7 @@ $(function(){
} }
}); });
$(slideToTop).click(function () { $(slideToTop).click(function () {
$("body").animate({ $("html,body").animate({ // firefox ie not support body, chrome support body. but found that new version chrome not support body too.
scrollTop: 0 scrollTop: 0
}, 100); }, 100);
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment