File "htmlUtils.js"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/js_composer/assets/js/editors/helpers/htmlUtils.js
File size: 266 bytes
MIME-type: text/plain
Charset: utf-8
(function (window) {
'use strict';
window.vc.htmlHelpers = {
fixUnclosedTags: function ( string ) {
// Replace opening < with an entity < to avoid editor breaking
var regex = /<([^>]+)$/g;
return string.replace(regex, '<');
}
};
})(window);