Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Anshul Sharma committed May 11, 2020
2 parents 8bd428a + e14bee7 commit bc2492a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,9 @@ var inputLimiter = function userInputLimier(interaction) {
var oldValue = _getTextareaValue(interaction);
var isCke = _getFormat(interaction) === 'xhtml';

if (isCke) {
if (typeof($(e.target).attr('data-clipboard')) === 'string') {
newValue = $(e.target).attr('data-clipboard');
} else if (isCke) {
// cke has its own object structure
newValue = e.data.dataValue;
} else {
Expand Down

0 comments on commit bc2492a

Please sign in to comment.