commerce_smart_importer-8.x-1.0-alpha1/js/dropzoneImporter.js
js/dropzoneImporter.js
/**
* @file
* @fileGlobal jQuery, Drupal */
(function ($, Drupal) {
'use strict';
Dropzone.autoDiscover = false;
$('div#dropzone').dropzone({
addRemoveLinks: true,
url: '/admin/commerce-smart-upload',
dictDefaultMessage: Drupal.t('Drag your images here or click on the box to upload')
});
})(jQuery, Drupal);
