Repository URL to install this package:
Version:
2.4.1b3 ▾
|
wagtail-gardentronic
/
admin
/
static_src
/
wagtailadmin
/
js
/
hallo-plugins
/
hallo-requireparagraphs.js
|
---|
(function() {
(function(jQuery) {
return jQuery.widget('IKS.hallorequireparagraphs', {
options: {
editable: null,
uuid: '',
blockElements: ['dd', 'div', 'dl', 'figure', 'form', 'ul', 'ol', 'table', 'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6']
},
cleanupContentClone: function(el) {
// if the editable element contains no block-level elements wrap the contents in a <P>
if (el.html().length && !jQuery(this.options.blockElements.toString(), el).length) {
this.options.editable.execute('formatBlock', 'p');
}
}
});
})(jQuery);
}).call(this);