From 30f26ebb9bb617822ef47b9501c17ca58b52c69b Mon Sep 17 00:00:00 2001 From: rolux Date: Thu, 31 Jan 2013 18:46:01 +0530 Subject: [PATCH] fix video markers --- source/Ox.UI/Ox.UI.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source/Ox.UI/Ox.UI.js b/source/Ox.UI/Ox.UI.js index 3365857b..5d399a09 100644 --- a/source/Ox.UI/Ox.UI.js +++ b/source/Ox.UI/Ox.UI.js @@ -335,10 +335,7 @@ Ox.load.UI = function(options, callback) { color = color || 'default'; theme = theme || Ox.Theme(); themeData = Ox.Theme.getThemeData(theme); - if (type == 'marker') { - image = image.replace(/#000000/g, themeData['videoMarkerBorder']) - .replace(/#FFFFFF/g, themeData['videoMarkerBackground']); - } else if (type == 'symbol') { + if (type == 'symbol') { if (Ox.isString(color)) { colorName = color; color = themeData['symbol' + Ox.toTitleCase(color) + 'Color'];