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,
|
annotationsRange: ui.annotationsRange,
|
||||||
annotationsSize: ui.annotationsSize,
|
annotationsSize: ui.annotationsSize,
|
||||||
annotationsSort: ui.annotationsSort,
|
annotationsSort: ui.annotationsSort,
|
||||||
annotationsTooltip: Ox._('annotations {}',
|
annotationsTooltip: Ox._(
|
||||||
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']),
|
'annotations {0}',
|
||||||
|
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']
|
||||||
|
),
|
||||||
censored: data.censored,
|
censored: data.censored,
|
||||||
censoredIcon: pandora.site.cantPlay.icon,
|
censoredIcon: pandora.site.cantPlay.icon,
|
||||||
censoredTooltip: pandora.site.cantPlay.text,
|
censoredTooltip: pandora.site.cantPlay.text,
|
||||||
|
|
|
@ -13,8 +13,10 @@ pandora.ui.player = function(data) {
|
||||||
annotationsRange: ui.annotationsRange,
|
annotationsRange: ui.annotationsRange,
|
||||||
annotationsSize: ui.annotationsSize,
|
annotationsSize: ui.annotationsSize,
|
||||||
annotationsSort: ui.annotationsSort,
|
annotationsSort: ui.annotationsSort,
|
||||||
annotationsTooltip: Ox._('annotations {}',
|
annotationsTooltip: Ox._(
|
||||||
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']),
|
'annotations {0}',
|
||||||
|
['<span class="OxBright">' + Ox.SYMBOLS.SHIFT + 'A</span>']
|
||||||
|
),
|
||||||
censored: data.censored,
|
censored: data.censored,
|
||||||
censoredIcon: pandora.site.cantPlay.icon,
|
censoredIcon: pandora.site.cantPlay.icon,
|
||||||
censoredTooltip: pandora.site.cantPlay.text,
|
censoredTooltip: pandora.site.cantPlay.text,
|
||||||
|
|
|
@ -13,7 +13,10 @@ pandora.ui.timeline = function(data) {
|
||||||
annotationsRange: ui.annotationsRange,
|
annotationsRange: ui.annotationsRange,
|
||||||
annotationsSize: ui.annotationsSize,
|
annotationsSize: ui.annotationsSize,
|
||||||
annotationsSort: ui.annotationsSort,
|
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,
|
censored: data.censored,
|
||||||
censoredIcon: pandora.site.cantPlay.icon,
|
censoredIcon: pandora.site.cantPlay.icon,
|
||||||
censoredTooltip: pandora.site.cantPlay.text,
|
censoredTooltip: pandora.site.cantPlay.text,
|
||||||
|
|
Loading…
Reference in a new issue