removing animation for smoother effect.

This commit is contained in:
Naomi Aro 2013-08-30 01:39:51 -04:00
parent 0e017374b7
commit 8971e6330a
1 changed files with 3 additions and 1 deletions

View File

@ -245,16 +245,18 @@ var AIRTIME = (function(AIRTIME) {
} }
$showList.accordion({ $showList.accordion({
animated: false,
create: function( event, ui ) { create: function( event, ui ) {
var $div = $showList.find(".ui-accordion-content-active"); var $div = $showList.find(".ui-accordion-content-active");
createShowTable($div); createShowTable($div);
}, },
change: function( event, ui ) { change: function( event, ui ) {
var $div = $(ui.newContent); var $div = $(ui.newContent);
$(ui.oldContent).empty();
createShowTable($div); createShowTable($div);
}, },
changestart: function( event, ui ) { changestart: function( event, ui ) {
$(ui.oldContent).empty();
} }
}); });
} }