Files
crm.clientright.ru/modules/Workflow2/tasks/WfTaskFormatcomments.js

15 lines
630 B
JavaScript
Executable File

jQuery(function() {
var content = ''
jQuery('.NotHTMLFormated').on('click', function() {
if(jQuery(this).prop('checked')) {
//console.log(jQuery('#PreviewContainer').html(), jQuery('#PreviewContainer').html().replace('<','&gt;'));
content = jQuery('#PreviewContainer').html();
jQuery('#PreviewContainer').text(jQuery('#PreviewContainer').html());
jQuery('#PreviewContainer').css('white-space','pre');
} else {
jQuery('#PreviewContainer').css('white-space', 'inherit');
jQuery('#PreviewContainer').html(content);
}
});
});