1
0
Fork 0
forked from 0x2620/oxjs

Ox.UI.getImageURL -> Ox.getImageURL

This commit is contained in:
rlx 2014-09-25 12:28:47 +02:00
commit 4ea696b451
14 changed files with 36 additions and 36 deletions

View file

@ -552,7 +552,7 @@ Ox.VideoPlayer = function(options, self) {
self.$playIcon = $('<img>')
.addClass('OxPlayIcon OxVideo')
.attr({
src: Ox.UI.getImageURL('symbol' + (
src: Ox.getImageURL('symbol' + (
self.options.paused ? 'Play' : 'Pause'
), 'videoIcon')
})
@ -572,7 +572,7 @@ Ox.VideoPlayer = function(options, self) {
})
.addClass('OxCensoredIcon OxVideo')
.attr({
src: Ox.UI.getImageURL(
src: Ox.getImageURL(
'symbol' + self.options.censoredIcon, 'videoIcon'
)
})
@ -609,7 +609,7 @@ Ox.VideoPlayer = function(options, self) {
self.$pointMarker[point][edge] = $('<img>')
.addClass('OxPointMarker OxPointMarker' + titleCase)
.attr({
src: Ox.UI.getImageURL('marker' + titleCase)
src: Ox.getImageURL('marker' + titleCase)
})
.appendTo(self.$videoContainer);
});
@ -2665,7 +2665,7 @@ Ox.VideoPlayer = function(options, self) {
function togglePlayIcon() {
self.$playIcon.attr({
src: Ox.UI.getImageURL(
src: Ox.getImageURL(
'symbol' + (self.options.paused ? 'Play' : 'Pause'
), 'videoIcon')
});