Browse Source

BI-48784 fix: 跟chrome表现一致,需要nextTick

es6
imp 5 years ago
parent
commit
d3efa9dfad
  1. 2
      src/core/platform/web/detectElementResize.js

2
src/core/platform/web/detectElementResize.js

@ -114,7 +114,7 @@
var addResizeListener = function (element, fn) {
if (attachEvent) {
element.attachEvent("onresize", fn);
fn();
BI.nextTick(fn);
} else {
if (!element.__resizeTriggers__) {
if (getComputedStyle(element).position === "static") element.style.position = "relative";

Loading…
Cancel
Save