forked from 0x2620/oxjs
Ox.UI.getImageURL -> Ox.getImageURL
This commit is contained in:
parent
1000cfe73e
commit
4ea696b451
14 changed files with 36 additions and 36 deletions
|
|
@ -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')
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue