From 5f1c6453a55adc6392cc5cd82f3a3cd8393d4889 Mon Sep 17 00:00:00 2001 From: denise Date: Fri, 24 Aug 2012 11:44:18 -0400 Subject: [PATCH] CC-4246: Smart Playlist: Click shuffle button will shuffle the contents multiple times -fixed -disabled shuffle button --- .../js/airtime/playlist/smart_blockbuilder.js | 23 +++++++------------ 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js b/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js index 05c0422ce..8409b8a9f 100644 --- a/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js +++ b/airtime_mvc/public/js/airtime/playlist/smart_blockbuilder.js @@ -329,23 +329,16 @@ function setupUI() { if (shuffleButton.hasClass('ui-state-disabled')) { shuffleButton.removeClass('ui-state-disabled'); } - //check if shuffle button already has a click event - var clickEvents = $(document).data('events').click; - var hasEvent = false; - $.each(clickEvents, function(i, event) { - if (event.selector == shuffleButton.selector) { - hasEvent = true; - return false; - } - }); - if (!hasEvent) { - shuffleButton.live('click', function(){ - buttonClickAction('shuffle', 'Playlist/smart-block-shuffle'); - }); + if (shuffleButton.attr('disabled') !== undefined) { + shuffleButton.removeAttr('disabled'); } } else if (!shuffleButton.hasClass('ui-state-disabled')) { - shuffleButton.addClass('ui-state-disabled'); - shuffleButton.die('click'); + if (!shuffleButton.hasClass('ui-state-disabled')) { + shuffleButton.addClass('ui-state-disabled'); + } + if (shuffleButton.attr('disabled') === undefined) { + shuffleButton.attr('disabled', 'disabled'); + } } var dynamic_length = target_length;