Skip to content

Commit

Permalink
Fix line length issue
Browse files Browse the repository at this point in the history
  • Loading branch information
paxnovem committed Nov 1, 2019
1 parent 69aab8d commit 69bcf1a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/js/select2/dropdown/attachBody.js
Expand Up @@ -195,7 +195,10 @@ define([
left: 0
};

if ($.contains(document.body, $offsetParent[0]) || $offsetParent[0].isConnected) {
if (
$.contains(document.body, $offsetParent[0]) ||
$offsetParent[0].isConnected
) {
parentOffset = $offsetParent.offset();
}

Expand Down

0 comments on commit 69bcf1a

Please sign in to comment.