shifted marked-only mode to F3...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-06-08 00:17:16 +04:00
parent d61dbc0af0
commit 78a1e72db5
2 changed files with 7 additions and 4 deletions

View File

@ -126,10 +126,12 @@ $(function(){
})
.on('swipeUp', function(){
prevRibbon()
//shiftImageUp(null, DIRECTION)
centerRibbons()
})
.on('swipeDown', function(){
nextRibbon()
//shiftImageDown(null, DIRECTION)
centerRibbons()
})

View File

@ -527,11 +527,12 @@ var KEYBOARD_CONFIG = {
F2: {
default: doc('Toggle mark visibility',
function(){ toggleMarkesView() }),
shift: doc('Toggle marked only images view',
function(){
toggleMarkedOnlyView()
})
shift: 'F3',
},
F3: doc('Toggle marked only images view',
function(){
toggleMarkedOnlyView()
}),
E: doc('Open image in external software', openImage),