You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just upgraded to Drupal 11 and afterwards the Superfish accordeon menu did not collapse. The following error was shown: Uncaught TypeError: $.isFunction is not a function
$.isFunction is used by jquery.hoverIntent.minified.js twice and was not present in jQuery v4.0.0-beta.2 that comes with Drupal 11.0.5 (while it was still present in jQuery v3.7.1 that came with Drupal 10.3.6).
The big can be fixed by replacing: $.isFunction(cfg.out)||(cfg.out=cfg.over)):cfg=$.isFunction(handlerOut)
by: (typeof cfg.out==="function")||(cfg.out=cfg.over)):cfg=(typeof handlerOut==="function")
The text was updated successfully, but these errors were encountered:
I just upgraded to Drupal 11 and afterwards the Superfish accordeon menu did not collapse. The following error was shown:
Uncaught TypeError: $.isFunction is not a function
$.isFunction is used by jquery.hoverIntent.minified.js twice and was not present in jQuery v4.0.0-beta.2 that comes with Drupal 11.0.5 (while it was still present in jQuery v3.7.1 that came with Drupal 10.3.6).
The big can be fixed by replacing:
$.isFunction(cfg.out)||(cfg.out=cfg.over)):cfg=$.isFunction(handlerOut)
by:
(typeof cfg.out==="function")||(cfg.out=cfg.over)):cfg=(typeof handlerOut==="function")
The text was updated successfully, but these errors were encountered: