提交 fbe95190 编写于 作者: P pah100

Fix #4569 (show warning "Can't get dom width or height" if width/height have been set)

上级 e5569ac3
......@@ -1564,7 +1564,13 @@ define(function (require) {
if (!dom) {
throw new Error('Initialize failed: invalid dom.');
}
if (zrUtil.isDom(dom) && dom.nodeName.toUpperCase() !== 'CANVAS' && (!dom.clientWidth || !dom.clientHeight)) {
if (zrUtil.isDom(dom)
&& dom.nodeName.toUpperCase() !== 'CANVAS'
&& (
(!dom.clientWidth && (!opts || opts.width == null))
|| (!dom.clientHeight && (!opts || opts.height == null))
)
) {
console.warn('Can\'t get dom width or height');
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册