pianello-api/resources/js/components/inline-editor/index.js

11 lines
206 B
JavaScript
Raw Normal View History

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