From 5e776eb6aea41e61b76492896f399be51533697b Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Sat, 20 Sep 2014 12:37:27 +0200 Subject: [PATCH] use Ox.$, not $ --- source/Ox.UI/js/Video/BlockVideoTimeline.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Ox.UI/js/Video/BlockVideoTimeline.js b/source/Ox.UI/js/Video/BlockVideoTimeline.js index 4376af7f..5cafbd36 100644 --- a/source/Ox.UI/js/Video/BlockVideoTimeline.js +++ b/source/Ox.UI/js/Video/BlockVideoTimeline.js @@ -79,7 +79,7 @@ Ox.BlockVideoTimeline = function(options, self) { addLine(i); }); - self.$positionMarker = $('') + self.$positionMarker = Ox.$('') .attr({ src: Ox.UI.getImageURL('markerPosition') }) @@ -91,7 +91,7 @@ Ox.BlockVideoTimeline = function(options, self) { self.$pointMarker = {}; ['in', 'out'].forEach(function(point) { var titlecase = Ox.toTitleCase(point); - self.$pointMarker[point] = $('') + self.$pointMarker[point] = Ox.$('') .addClass('OxMarkerPoint' + titlecase) .attr({ src: Ox.UI.getImageURL('marker' + titlecase) @@ -102,7 +102,7 @@ Ox.BlockVideoTimeline = function(options, self) { } function addLine(i) { - self.$lines[i] = $('
') + self.$lines[i] = Ox.$('
') .css({ position: 'absolute', left: self.margin / 2 + 'px', @@ -118,7 +118,7 @@ Ox.BlockVideoTimeline = function(options, self) { marginLeft: -i * self.options.width + 'px' }) .appendTo(self.$lines[i]); - self.$interfaces[i] = $('
') + self.$interfaces[i] = Ox.$('
') // OxTarget and OxSpecialTarget are needed for InfoList .addClass('OxInterface OxTarget OxSpecialTarget') .css({