From 699f0b64a55fea02c149f8839964dbde9e6d7314 Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 22 Feb 2013 03:10:14 +0000 Subject: [PATCH] update text panel --- static/js/pandora/textPanel.js | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/static/js/pandora/textPanel.js b/static/js/pandora/textPanel.js index 9d8ddead..89f8a1d5 100644 --- a/static/js/pandora/textPanel.js +++ b/static/js/pandora/textPanel.js @@ -56,7 +56,7 @@ pandora.ui.textPanel = function() { }) .bindEvent({ click: function() { - selectEmbed( + that.selectEmbed( selected < embedURLs.length - 1 ? selected + 1 : 0 ); } @@ -87,7 +87,7 @@ pandora.ui.textPanel = function() { }) .bindEvent({ click: function() { - selectEmbed( + that.selectEmbed( selected ? selected - 1 : embedURLs.length - 1 ); } @@ -173,10 +173,14 @@ pandora.ui.textPanel = function() { return urls; } - function selectEmbed(index) { - selected = index; - pandora.$ui.textEmbed.update(embedURLs[selected]); - } + that.selectEmbed = function(index) { + if (index != selected) { + selected = index; + $('.OxSpecialLink').removeClass('OxActive'); + $('#embed' + selected).addClass('OxActive'); + pandora.$ui.textEmbed.update(embedURLs[selected]); + } + }; return that; @@ -225,13 +229,20 @@ pandora.ui.textHTML = function(text) { clickLink: pandora.clickLink, editable: text.editable, format: function(text) { + var index = 0; return text.replace( /]*?href="(.+?)".*?>/gi, function() { - var link = arguments[0], url = arguments[1]; - return pandora.isEmbedURL(url) - ? '' - : link; + var link = arguments[0], ret, url = arguments[1]; + if (pandora.isEmbedURL(url)) { + ret = '' + index++; + } else { + ret = link; + } + return ret; } ); },