We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a89982 commit 64abaabCopy full SHA for 64abaab
src/jupyter_contrib_nbextensions/nbextensions/scroll_down/config.yaml
@@ -4,4 +4,4 @@ Description: Scroll outputs down automatically
4
Link: readme.md
5
Icon: icon.png
6
Main: main.js
7
-Compatibility: 4.x
+Compatibility: 4.x, 5.x
src/jupyter_contrib_nbextensions/nbextensions/scroll_down/main.js
@@ -38,7 +38,9 @@ define([
38
39
console.log("[ScrollDown] is loaded");
40
41
- $(".output").on("resize", function () {
+ // the event was renamed from 'resize' to 'resizeOutput' in
42
+ // https://github.com/jupyter/notebook/commit/b4928d481abd9f7cd996fd4b24078a55880d21e6
43
+ $(".output").on("resize resizeOutput", function () {
44
if (!params.scrollDownIsEnabled) return;
45
var output = $(this);
46
setTimeout(function () {
0 commit comments