別のjQueryバージョンを使用する必要があります。現在、DrupalはjQuery 3.2.1を使用していますが、以前のバージョンが必要です。
Drupal 7では、jQueryバージョンをjQuery Updateモジュールで簡単に変更できます。Drupal 8?
Mytheme.libraries.ymlにカスタムjQueryライブラリを追加します。
jquery-custom:
remote: https://github.com/jquery/jquery
version: "2.2.4"
license:
name: MIT
url: https://github.com/jquery/jquery/blob/2.2.4/LICENSE.txt
gpl-compatible: true
js:
js/jquery-2.2.4.min.js: { minified: true, weight: -20 }
次に、mytheme.info.ymlのコアjQueryライブラリをオーバーライドします。
libraries-override:
# Replace an entire library.
core/jquery: mytheme/jquery-custom