mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-17 12:39:54 +08:00
Fixed dumb typo,
forgot to update scrollmanager ref to scroll_manager.
This commit is contained in:
parent
3f9fea0328
commit
f6adf3e064
@ -186,13 +186,13 @@ define([
|
||||
'space': {
|
||||
help: "Scroll down",
|
||||
handler: function(event) {
|
||||
return that.notebook.scrollmanager.scroll(1);
|
||||
return that.notebook.scroll_manager.scroll(1);
|
||||
},
|
||||
},
|
||||
'shift-space': {
|
||||
help: "Scroll up",
|
||||
handler: function(event) {
|
||||
return that.notebook.scrollmanager.scroll(-1);
|
||||
return that.notebook.scroll_manager.scroll(-1);
|
||||
},
|
||||
},
|
||||
'enter' : {
|
||||
|
Loading…
Reference in New Issue
Block a user