Verified Commit 19dfeb4f authored by Dave Long's avatar Dave Long
Browse files

Issue #3419730 by catch, Spokje: [jQuery 4] TypeError: $.isArray is not a...

Issue #3419730 by catch, Spokje: [jQuery 4] TypeError: $.isArray is not a function at states.Dependent.verifyConstraints
parent b930619b
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -304,7 +304,7 @@
     */
    verifyConstraints(constraints, selector) {
      let result;
      if ($.isArray(constraints)) {
      if (Array.isArray(constraints)) {
        // This constraint is an array (OR or XOR).
        const hasXor = $.inArray('xor', constraints) === -1;
        const len = constraints.length;