updated keybindings doc...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2014-01-02 10:20:44 +04:00
parent 3fb7be1458
commit 7c4fcf7c70

View File

@ -376,7 +376,7 @@ var KEYBOARD_CONFIG = {
'#7': doc('Fit seven images', function(){ fitNImages(7) }), '#7': doc('Fit seven images', function(){ fitNImages(7) }),
'#8': doc('Fit eight images', function(){ fitNImages(8) }), '#8': doc('Fit eight images', function(){ fitNImages(8) }),
'#9': doc('Fit nine images', function(){ fitNImages(9) }), '#9': doc('Fit nine images', function(){ fitNImages(9) }),
'#0': doc('Fit nine images', function(){ fitNImages(CONFIG.max_screen_images) }), '#0': doc('Fit maximum images', function(){ fitNImages(CONFIG.max_screen_images) }),
// cropping... // cropping...
C: doc('Show ribbon crop dialog', cropImagesDialog), C: doc('Show ribbon crop dialog', cropImagesDialog),
@ -510,7 +510,7 @@ var KEYBOARD_CONFIG = {
shiftImageUp(null, DIRECTION) shiftImageUp(null, DIRECTION)
centerRibbons() centerRibbons()
}), }),
'ctrl+shift': doc('Shift image up to empty ribbon', 'ctrl+shift': doc('Shift image up to new ribbon',
function(){ function(){
event.preventDefault() event.preventDefault()
shiftImageUpNewRibbon(null, DIRECTION) shiftImageUpNewRibbon(null, DIRECTION)
@ -521,7 +521,7 @@ var KEYBOARD_CONFIG = {
toggleMarksView('on') toggleMarksView('on')
shiftMarkedImagesUp() shiftMarkedImagesUp()
}), }),
'alt+shift': doc('Shift marked images up to empty ribbon', 'alt+shift': doc('Shift marked images up to new ribbon',
function(){ function(){
// XXX // XXX
}), }),
@ -539,7 +539,7 @@ var KEYBOARD_CONFIG = {
shiftImageDown(null, DIRECTION) shiftImageDown(null, DIRECTION)
centerRibbons() centerRibbons()
}), }),
'ctrl+shift': doc('Shift image down to empty ribbon', 'ctrl+shift': doc('Shift image down to new ribbon',
function(){ function(){
event.preventDefault() event.preventDefault()
shiftImageDownNewRibbon(null, DIRECTION) shiftImageDownNewRibbon(null, DIRECTION)
@ -550,7 +550,7 @@ var KEYBOARD_CONFIG = {
toggleMarksView('on') toggleMarksView('on')
shiftMarkedImagesDown() shiftMarkedImagesDown()
}), }),
'alt+shift': doc('Shift marked images down to empty ribbon', 'alt+shift': doc('Shift marked images down to new ribbon',
function(){ function(){
// XXX // XXX
}), }),