|
|
|
@ -162,7 +162,7 @@ BI.prepares.push(function () {
|
|
|
|
|
}); |
|
|
|
|
BI.Plugin.configWidget("bi.flex_horizontal", function (ob) { |
|
|
|
|
if (ob.scrollable === true || ob.scrollx !== false) { |
|
|
|
|
if (ob.hgap > 0 || ob.rgap > 0) {// flex中最后一个margin-right不生效
|
|
|
|
|
if (ob.hgap > 0 || ob.lgap > 0 || ob.rgap > 0) { |
|
|
|
|
if (BI.Providers.getProvider("bi.provider.system").getResponsiveMode()) { |
|
|
|
|
return BI.extend({}, ob, {type: "bi.responsive_flex_scrollable_horizontal"}); |
|
|
|
|
} |
|
|
|
@ -175,7 +175,7 @@ BI.prepares.push(function () {
|
|
|
|
|
}); |
|
|
|
|
BI.Plugin.configWidget("bi.flex_vertical", function (ob) { |
|
|
|
|
if (ob.scrollable === true || ob.scrollx === true) { |
|
|
|
|
if (ob.hgap > 0 || ob.rgap > 0) {// flex中最后一个margin-right不生效
|
|
|
|
|
if (ob.hgap > 0 || ob.lgap > 0 || ob.rgap > 0) { |
|
|
|
|
return BI.extend({}, ob, {type: "bi.flex_scrollable_vertical"}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|