(function ($){ SirTrevor.BlockMixins.Plustextable = { mixinName: "Textable", preload: true, initializeTextable: function() { if (this['formId'] === undefined) { this.withMixin(SirTrevor.BlockMixins.Formable); } if (this['show_heading'] === undefined) { this.show_heading = true; } }, align_key:"text-align", text_key:"item-text", heading_key: "title", text_area: function() { return `
${this.heading()}

${i18n.t("blocks:textable:align:title")}

` }, heading: function() { if(this.show_heading) { return `
` } else { return ""; } }, }; SirTrevor.Block.prototype.availableMixins.push("plustextable"); })(jQuery);