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

@ -98,10 +98,10 @@ Ox.LargeVideoTimeline = function(options, self) {
setTimeout(function() {
var $cut = $('<img>')
.addClass('OxCut')
.attr({src: Ox.UI.getImageURL('markerCut')}),
.attr({src: Ox.getImageURL('markerCut')}),
$chapter = $('<img>')
.addClass('OxChapter')
.attr({src: Ox.UI.getImageURL('markerChapter')}),
.attr({src: Ox.getImageURL('markerChapter')}),
chapters = self.options.chapters.slice(1).map(function(chapter) {
return chapter.position;
});
@ -115,7 +115,7 @@ Ox.LargeVideoTimeline = function(options, self) {
self.$markerPosition = $('<img>')
.addClass('OxMarkerPosition')
.attr({src: Ox.UI.getImageURL('markerPosition')})
.attr({src: Ox.getImageURL('markerPosition')})
.appendTo(that);
setMarker();
@ -124,7 +124,7 @@ Ox.LargeVideoTimeline = function(options, self) {
var titlecase = Ox.toTitleCase(point);
self.$pointMarker[point] = $('<img>')
.addClass('OxMarkerPoint' + titlecase)
.attr({src: Ox.UI.getImageURL('marker' + titlecase)})
.attr({src: Ox.getImageURL('marker' + titlecase)})
.appendTo(self.$timeline);
setPointMarker(point);
});