Skip to content

Add JS für ESM

Choose a tag to compare

@beardcoder beardcoder released this 21 Sep 13:39
· 89 commits to master since this release
34e77a2

Now you can load the js file with es6 module loading

import { AjaxForm } from '../../../../../Packages/Application/Onedrop.AjaxForm/Resources/Public/JavaScript/form.esm';

let ajaxForms = document.querySelectorAll('[data-ajax="ajax-form"]');
for (let i = 0; i < ajaxForms.length; i++) {
    new AjaxForm(ajaxForms.item(i));
}