use new getImageURL method

This commit is contained in:
rolux 2012-12-28 17:58:01 +01:00
parent b9387eb26f
commit 9efb64e620

View file

@ -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')
});
}