forked from 0x2620/oxjs
use Ox.UI.PATH for images
This commit is contained in:
parent
7e12eb43d7
commit
e1b6e3890f
6 changed files with 10 additions and 10 deletions
|
|
@ -62,7 +62,7 @@ Ox.LargeTimeline = function(options, self) {
|
|||
self.$cuts[i] = $('<img>')
|
||||
.addClass('OxCut')
|
||||
.attr({
|
||||
src: Ox.PATH + 'png/Ox.UI/videoMarkerCut.png'
|
||||
src: Ox.UI.PATH + 'png/videoMarkerCut.png'
|
||||
})
|
||||
.css({
|
||||
left: (v * self.fps) + 'px'
|
||||
|
|
@ -73,7 +73,7 @@ Ox.LargeTimeline = function(options, self) {
|
|||
self.$markerPosition = $('<img>')
|
||||
.addClass('OxMarkerPosition')
|
||||
.attr({
|
||||
src: Ox.PATH + 'png/Ox.UI/videoMarkerPlay.png'
|
||||
src: Ox.UI.PATH + 'png/videoMarkerPlay.png'
|
||||
})
|
||||
.appendTo(that.$element);
|
||||
setMarker();
|
||||
|
|
@ -82,7 +82,7 @@ Ox.LargeTimeline = function(options, self) {
|
|||
self.$markerPoint[i] = $('<img>')
|
||||
.addClass('OxMarkerPoint' + v)
|
||||
.attr({
|
||||
src: Ox.PATH + 'png/Ox.UI/videoMarker' + v + '.png'
|
||||
src: Ox.UI.PATH + 'png/videoMarker' + v + '.png'
|
||||
})
|
||||
.appendTo(self.$timeline);
|
||||
setMarkerPoint(i);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue