guy 7 years ago
parent
commit
ceb951501b
  1. 4
      bi/core.js
  2. 4
      docs/core.js
  3. 4
      src/config.js

4
bi/core.js

@ -17812,7 +17812,7 @@ $(function () {
//注册控件
BI.Plugin.registerWidget("bi.grid_table", function (ob) {
//非chrome下滚动条滑动效果不好,禁止掉
if (!(BI.isChrome() && BI.isWindows())) {
if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) {
return BI.extend(ob, {type: "bi.quick_grid_table"});
} else {
return ob;
@ -17820,7 +17820,7 @@ $(function () {
});
BI.Plugin.registerWidget("bi.collection_table", function (ob) {
//非chrome下滚动条滑动效果不好,禁止掉
if (!(BI.isChrome() && BI.isWindows())) {
if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) {
return BI.extend(ob, {type: "bi.quick_collection_table"});
} else {
return ob;

4
docs/core.js

@ -28954,7 +28954,7 @@ $(function () {
//注册控件
BI.Plugin.registerWidget("bi.grid_table", function (ob) {
//非chrome下滚动条滑动效果不好,禁止掉
if (!(BI.isChrome() && BI.isWindows())) {
if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) {
return BI.extend(ob, {type: "bi.quick_grid_table"});
} else {
return ob;
@ -28962,7 +28962,7 @@ $(function () {
});
BI.Plugin.registerWidget("bi.collection_table", function (ob) {
//非chrome下滚动条滑动效果不好,禁止掉
if (!(BI.isChrome() && BI.isWindows())) {
if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) {
return BI.extend(ob, {type: "bi.quick_collection_table"});
} else {
return ob;

4
src/config.js

@ -58,7 +58,7 @@ $(function () {
//注册控件
BI.Plugin.registerWidget("bi.grid_table", function (ob) {
//非chrome下滚动条滑动效果不好,禁止掉
if (!(BI.isChrome() && BI.isWindows())) {
if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) {
return BI.extend(ob, {type: "bi.quick_grid_table"});
} else {
return ob;
@ -66,7 +66,7 @@ $(function () {
});
BI.Plugin.registerWidget("bi.collection_table", function (ob) {
//非chrome下滚动条滑动效果不好,禁止掉
if (!(BI.isChrome() && BI.isWindows())) {
if (!(BI.isChrome() && BI.isWindows() && !BI.isEdge())) {
return BI.extend(ob, {type: "bi.quick_collection_table"});
} else {
return ob;

Loading…
Cancel
Save