Skip to content

Commit

Permalink
Selector: Update Sizzle from 2.3.5 to 2.3.6
Browse files Browse the repository at this point in the history
Fixes gh-4782
Close gh-4846
  • Loading branch information
mgol committed Feb 17, 2021
1 parent f8bdb12 commit 1654874
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions external/sizzle/dist/sizzle.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Sizzle CSS Selector Engine v2.3.5
* Sizzle CSS Selector Engine v2.3.6
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2020-03-14
* Date: 2021-02-16
*/
( function( window ) {
var i,
Expand Down Expand Up @@ -589,8 +589,8 @@ support = Sizzle.support = {};
* @returns {Boolean} True iff elem is a non-HTML XML node
*/
isXML = Sizzle.isXML = function( elem ) {
var namespace = elem.namespaceURI,
docElem = ( elem.ownerDocument || elem ).documentElement;
var namespace = elem && elem.namespaceURI,
docElem = elem && ( elem.ownerDocument || elem ).documentElement;

// Support: IE <=8
// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
Expand Down
Loading

0 comments on commit 1654874

Please sign in to comment.