- Issue created by @emptyvoid
- πΊπΈUnited States emptyvoid
Upgrading the minified bootstrap.min.js to version 5 fixes the errors for the theme.
However, though not related directly to this theme. The jQuery 4 version depreciated .isFunction()https://api.jquery.com/jQuery.isFunction/
Description: Determines if its argument is callable as a function. version added: 1.2jQuery.isFunction( value ) value Type: Anything The value to be tested. As of jQuery 3.3, jQuery.isFunction() has been deprecated. In most cases, its use can be replaced by typeof x === "function". Note: As of jQuery 1.3, functions provided by the browser like alert() and DOM element methods like getAttribute() are not guaranteed to be detected as functions in browsers such as Internet Explorer.
- πΊπΈUnited States emptyvoid
Loads of JavaScript libraries are affected by Drupal Core using jQuery 4.
There are even core libraries which fail because of the missing $.isFunction().I've created a "shim" module and library to restore the function signature and use the "short cut" method.