forked from 0x2620/pandora
fix annotations panel tooltip
This commit is contained in:
parent
08325ab399
commit
5b3d4608ea
3 changed files with 12 additions and 5 deletions
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue