fix #2298 (Previous/Next Document buttons lack tooltips)

This commit is contained in:
rolux 2014-02-13 13:57:36 +00:00 committed by j
parent e5151a18a4
commit cebd7c14ea
2 changed files with 4 additions and 4 deletions

View file

@ -113,8 +113,8 @@ pandora.ui.documentDialog = function(options) {
$selectButton = Ox.ButtonGroup({
buttons: [
{id: 'previous', title: 'left'},
{id: 'next', title: 'right'}
{id: 'previous', title: 'left', tooltip: Ox._('Previous')},
{id: 'next', title: 'right', tooltip: Ox._('Next')}
],
type: 'image'
})

View file

@ -300,8 +300,8 @@ pandora.ui.documentsPanel = function(options) {
$selectButton = Ox.ButtonGroup({
buttons: [
{id: 'previous', title: 'left'},
{id: 'next', title: 'right'}
{id: 'previous', title: 'left', tooltip: Ox._('Previous')},
{id: 'next', title: 'right', tooltip: Ox._('Next')}
],
type: 'image'
})