Browse Source

无JIRA feat: 加个方法 BI.getMinimumFontSize() 获取当前最小字体设置

es6
zsmj 2 years ago
parent
commit
997e307a9e
  1. 2
      src/core/platform/web/function.js

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

@ -145,6 +145,6 @@ BI._.extend(BI, {
document.body.appendChild(el); document.body.appendChild(el);
const size = getComputedStyle(el).fontSize; const size = getComputedStyle(el).fontSize;
el.remove(); el.remove();
return size; return parseInt(size);
} }
}); });

Loading…
Cancel
Save