Skip to content
Snippets Groups Projects
Commit b5f5d2c4 authored by juanf's avatar juanf
Browse files

SSDM-3556 : investigate issues with RTF copy/paste

SVN: 36668
parent cbbba4ba
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ $.extend(DefaultProfile.prototype, {
this.directLinkEnabled = true;
this.directLinkURL = null; //To be set during initialization using info retrieved from the DSS configuration by the reporting plugin
this.copyPastePlainText = false;
this.hideCodes = true;
this.hideTypes = {
"sampleTypeCodes" : [],
......
......@@ -685,6 +685,7 @@ var FormUtil = new function() {
// Rich Text Editor Support - (Summernote)
//
this.activateRichTextProperties = function($component, componentOnChange) {
var _this = this;
$("body").append($component);
$component.summernote({
......@@ -693,7 +694,22 @@ var FormUtil = new function() {
['Paragraph style ', ['style', 'ol', 'ul', 'paragraph', 'height']],
['Insert', ['link', 'table', 'hr', 'specialCharacter']],
['Misc', ['fullscreen', 'undo', 'redo', 'help']],],
disableDragAndDrop: true});
disableDragAndDrop: true,
callbacks: {
onPaste: function (e) {
if(profile.copyPastePlainText) {
var bufferText = ((e.originalEvent || e).clipboardData || window.clipboardData).getData("text/plain");
e.preventDefault();
setTimeout( function(){
document.execCommand( 'insertText', false, bufferText );
}, 10 );
} else {
// var bufferText = ((e.originalEvent || e).clipboardData || window.clipboardData).getData("text/html");
// bufferText = _this.sanitizeRichHTMLText(bufferText);
// ((e.originalEvent || e).clipboardData || window.clipboardData).setData("text/html", bufferText);
}
}
}});
$component.on("summernote.change", componentOnChange);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment