forked from 0x2620/pandora
add keyboard shortcuts to panel collapse/expand tooltips
This commit is contained in:
parent
cc3f2934bd
commit
970ebe506f
3 changed files with 9 additions and 4 deletions
|
@ -10,7 +10,8 @@ pandora.ui.contentPanel = function() {
|
||||||
resizable: true,
|
resizable: true,
|
||||||
resize: [96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 256],
|
resize: [96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 256],
|
||||||
size: pandora.user.ui.filtersSize,
|
size: pandora.user.ui.filtersSize,
|
||||||
tooltip: 'filters'
|
tooltip: 'filters <span class="OxBright">'
|
||||||
|
+ Ox.SYMBOLS.SHIFT + 'F</span>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
element: pandora.$ui.list = pandora.ui.list()
|
element: pandora.$ui.list = pandora.ui.list()
|
||||||
|
@ -25,7 +26,9 @@ pandora.ui.contentPanel = function() {
|
||||||
collapsible: true,
|
collapsible: true,
|
||||||
element: pandora.$ui.browser = pandora.ui.browser(),
|
element: pandora.$ui.browser = pandora.ui.browser(),
|
||||||
size: 112 + Ox.UI.SCROLLBAR_SIZE,
|
size: 112 + Ox.UI.SCROLLBAR_SIZE,
|
||||||
tooltip: pandora.site.itemName.singular.toLowerCase() + ' browser'
|
tooltip: pandora.site.itemName.singular.toLowerCase()
|
||||||
|
+ ' browser <span class="OxBright">'
|
||||||
|
+ Ox.SYMBOLS.SHIFT + 'B</span>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
element: pandora.$ui.item = pandora.ui.item()
|
element: pandora.$ui.item = pandora.ui.item()
|
||||||
|
|
|
@ -15,7 +15,8 @@ pandora.ui.leftPanel = function() {
|
||||||
collapsible: true,
|
collapsible: true,
|
||||||
element: pandora.$ui.info = pandora.ui.info(),
|
element: pandora.$ui.info = pandora.ui.info(),
|
||||||
size: pandora.getInfoHeight(true),
|
size: pandora.getInfoHeight(true),
|
||||||
tooltip: 'info'
|
tooltip: 'info <span class="OxBright">'
|
||||||
|
+ Ox.SYMBOLS.SHIFT + 'I</span>'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
id: 'leftPanel',
|
id: 'leftPanel',
|
||||||
|
|
|
@ -10,7 +10,8 @@ pandora.ui.mainPanel = function() {
|
||||||
resizable: true,
|
resizable: true,
|
||||||
resize: [192, 256, 320, 384],
|
resize: [192, 256, 320, 384],
|
||||||
size: pandora.user.ui.sidebarSize,
|
size: pandora.user.ui.sidebarSize,
|
||||||
tooltip: 'sidebar'
|
tooltip: 'sidebar <span class="OxBright">'
|
||||||
|
+ Ox.SYMBOLS.SHIFT + 'S</span>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
element: pandora.$ui.rightPanel = pandora.ui.rightPanel()
|
element: pandora.$ui.rightPanel = pandora.ui.rightPanel()
|
||||||
|
|
Loading…
Reference in a new issue