Отключение автозагрузки файлов у input-ов с селектором .js-form-file--no-autoupload
:
(function ($, Drupal) {
Drupal.behaviors.disableFileAutoupload = {
attach: function attach(context, settings) {
var $fileInput = $('.js-form-file--no-autoupload', context);
if ($fileInput.length) {
Drupal.behaviors.fileAutoUpload.detach($fileInput.parent(), settings, 'unload');
Drupal.behaviors.fileButtons.detach(context, settings, 'unload');
}
}
};
})(jQuery, Drupal);
Скрипт должен подключаться после core/modules/file/file.js
Написанное актуально для
Drupal 8
Добавить комментарий