pianello-api/resources/js/components/balloon-block-editor/index.js

11 lines
212 B
JavaScript
Raw Normal View History

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