fix annotations panel tooltip

This commit is contained in:
rolux 2013-08-08 17:48:52 +00:00
parent 08325ab399
commit 5b3d4608ea
3 changed files with 12 additions and 5 deletions

View file

@ -13,8 +13,10 @@ pandora.ui.editor = function(data) {
annotationsRange: ui.annotationsRange,
annotationsSize: ui.annotationsSize,
annotationsSort: ui.annotationsSort,
annotationsTooltip: Ox._('annotations {}',
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']),
annotationsTooltip: Ox._(
'annotations {0}',
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']
),
censored: data.censored,
censoredIcon: pandora.site.cantPlay.icon,
censoredTooltip: pandora.site.cantPlay.text,

View file

@ -13,8 +13,10 @@ pandora.ui.player = function(data) {
annotationsRange: ui.annotationsRange,
annotationsSize: ui.annotationsSize,
annotationsSort: ui.annotationsSort,
annotationsTooltip: Ox._('annotations {}',
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']),
annotationsTooltip: Ox._(
'annotations {0}',
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']
),
censored: data.censored,
censoredIcon: pandora.site.cantPlay.icon,
censoredTooltip: pandora.site.cantPlay.text,

View file

@ -13,7 +13,10 @@ pandora.ui.timeline = function(data) {
annotationsRange: ui.annotationsRange,
annotationsSize: ui.annotationsSize,
annotationsSort: ui.annotationsSort,
annotationsTooltip: 'annotations <span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>',
annotationsTooltip: Ox._(
'annotations {0}',
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']
),
censored: data.censored,
censoredIcon: pandora.site.cantPlay.icon,
censoredTooltip: pandora.site.cantPlay.text,