Fixed dumb typo,

forgot to update scrollmanager ref to scroll_manager.
This commit is contained in:
Jonathan Frederic 2014-08-21 08:22:10 -07:00 committed by Jonathan Frederic
parent 3f9fea0328
commit f6adf3e064

View File

@ -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' : {