pianello-api/resources/js/components/balloon-block-editor/index.js
Ale Gallo 82f958e5da Committing laravel (part 3)
committing js templating files and components
2023-11-10 16:00:59 +01:00

10 lines
212 B
JavaScript

(function () {
"use strict";
$(".editor").each(function () {
const el = this;
BalloonBlockEditor.create(el).catch((error) => {
console.error(error);
});
});
})();