From ba343a94f7c2f6bd300dd8d232395f0348a2339d Mon Sep 17 00:00:00 2001 From: Jason Chen Date: Mon, 20 Jun 2016 11:26:42 -0700 Subject: [PATCH] Enable default copy behavior Until we can implement better one. Closes #750 Closes #748 --- modules/clipboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/clipboard.js b/modules/clipboard.js index c758b02d68..34bb7c5086 100644 --- a/modules/clipboard.js +++ b/modules/clipboard.js @@ -119,7 +119,7 @@ class Clipboard extends Module { if (e.clipboardData) { // IE11 does not let us set non-text data clipboard.setData('application/json', JSON.stringify(this.quill.getContents(range))); } - e.preventDefault(); + // e.preventDefault(); } onCut(e) {