Fixed dumb typo,

forgot to update scrollmanager ref to scroll_manager.
Jonathan Frederic 12 years ago committed by Jonathan Frederic
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…
Cancel
Save