use new getImageURL method
This commit is contained in:
parent
b9387eb26f
commit
9efb64e620
1 changed files with 5 additions and 3 deletions
|
@ -499,7 +499,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
.attr({
|
||||
src: Ox.UI.getImageURL('symbol' + (
|
||||
self.options.paused ? 'Play' : 'Pause'
|
||||
), 'modern')
|
||||
), 'video')
|
||||
})
|
||||
.appendTo(self.$videoContainer);
|
||||
if (self.options.showIcon) {
|
||||
|
@ -517,7 +517,9 @@ Ox.VideoPlayer = function(options, self) {
|
|||
})
|
||||
.addClass('OxCensoredIcon OxVideo')
|
||||
.attr({
|
||||
src: Ox.UI.getImageURL('symbol' + self.options.censoredIcon, 'modern')
|
||||
src: Ox.UI.getImageURL(
|
||||
'symbol' + self.options.censoredIcon, 'video'
|
||||
)
|
||||
})
|
||||
.hide()
|
||||
.bindEvent({
|
||||
|
@ -2381,7 +2383,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
self.$playIcon.attr({
|
||||
src: Ox.UI.getImageURL(
|
||||
'symbol' + (self.options.paused ? 'Play' : 'Pause'
|
||||
), 'modern')
|
||||
), 'video')
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue