Browse Source

修复 dropdown 在某些特殊情况下调整浏览器窗口尺寸时出现的 `resize` 事件报错问题

pull/1321/head
贤心 1 year ago
parent
commit
2a60f6625a
  1. 2
      src/modules/dropdown.js

2
src/modules/dropdown.js

@ -455,7 +455,7 @@ layui.define(['jquery', 'laytpl', 'lay', 'util'], function(exports){
var that = thisModule.getThis(dropdown.thisId);
if(!that) return;
if(!that.elemView[0] || !$('.'+ STR_ELEM)[0]){
if((that.elemView && !that.elemView[0]) || !$('.'+ STR_ELEM)[0]){
return false;
}

Loading…
Cancel
Save