From 1ceae32d9b5220e1db4cffa48010b439b7f3005d Mon Sep 17 00:00:00 2001 From: Iisakki Rotko Date: Fri, 6 Sep 2024 23:26:26 +0200 Subject: [PATCH] fix: pasting outside of cells doing nothing (#285) Previously pasting anything but cells into the notebook would do nothing. This way pasting other content uses the browser's default action. --- nbclassic/static/notebook/js/clipboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nbclassic/static/notebook/js/clipboard.js b/nbclassic/static/notebook/js/clipboard.js index fe4bab90a..725e6d405 100644 --- a/nbclassic/static/notebook/js/clipboard.js +++ b/nbclassic/static/notebook/js/clipboard.js @@ -74,8 +74,8 @@ function paste(event) { } } first_inserted.focus_cell(); + event.preventDefault(); } - event.preventDefault(); } function notebookOnlyEvent(callback) {