From b5f5d2c497729c08245e190657339d21cf7e4b01 Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Fri, 10 Jun 2016 11:43:02 +0000 Subject: [PATCH] SSDM-3556 : investigate issues with RTF copy/paste SVN: 36668 --- .../webapps/eln-lims/html/js/config/Profile.js | 2 +- .../webapps/eln-lims/html/js/util/FormUtil.js | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js index fdb8e1443d9..d1063d7b3d3 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js @@ -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" : [], diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js index af82176923e..88c06bf5203 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/util/FormUtil.js @@ -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); -- GitLab