瀏覽代碼

Merge pull request #5691 from paxnovem/GH-5682

Fix support for the Shadow DOM when calculating offsets
Kevin Brown 5 年之前
父節點
當前提交
1da125f11e
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      src/js/select2/dropdown/attachBody.js

+ 4 - 1
src/js/select2/dropdown/attachBody.js

@@ -195,7 +195,10 @@ define([
       left: 0
     };
 
-    if ($.contains(document.body, $offsetParent[0])) {
+    if (
+      $.contains(document.body, $offsetParent[0]) ||
+      $offsetParent[0].isConnected
+      ) {
       parentOffset = $offsetParent.offset();
     }