11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
|
(function () {
|
||
|
"use strict";
|
||
|
|
||
|
$(".editor").each(function () {
|
||
|
const el = this;
|
||
|
BalloonBlockEditor.create(el).catch((error) => {
|
||
|
console.error(error);
|
||
|
});
|
||
|
});
|
||
|
})();
|