Update actions.js

Added help for select- actions.
This commit is contained in:
abalkin 2015-02-17 22:08:34 -05:00
parent 25a1d9e2f6
commit 3a6c634f3e

View File

@ -79,6 +79,7 @@ define(function(require){
} }
}, },
'select-previous-cell' : { 'select-previous-cell' : {
help: 'select cell above',
help_index : 'da', help_index : 'da',
handler : function (env) { handler : function (env) {
var index = env.notebook.get_selected_index(); var index = env.notebook.get_selected_index();
@ -89,6 +90,7 @@ define(function(require){
} }
}, },
'select-next-cell' : { 'select-next-cell' : {
help: 'select cell below',
help_index : 'db', help_index : 'db',
handler : function (env) { handler : function (env) {
var index = env.notebook.get_selected_index(); var index = env.notebook.get_selected_index();