From b81731dd76bfed9757dd9d0a207ff242495fe773 Mon Sep 17 00:00:00 2001 From: Klaus Hartl Date: Wed, 4 Feb 2009 20:46:54 +0000 Subject: [PATCH] Tabs: fixed duration for show animation - setting wasn't considered --- ui/ui.tabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui.tabs.js b/ui/ui.tabs.js index 8d1ae1d79..7d077b173 100644 --- a/ui/ui.tabs.js +++ b/ui/ui.tabs.js @@ -230,7 +230,7 @@ $.widget("ui.tabs", { var showTab = showFx ? function(clicked, $show) { $show.hide().removeClass('ui-tabs-hide') // avoid flicker that way - .animate(showFx, 500, function() { + .animate(showFx, showFx.duration || 'normal', function() { resetStyle($show, showFx); self._trigger('show', null, self._ui(clicked, $show[0])); }); -- 2.39.5