From f425cae7c4e894c6aa9fc1fefa8e5a426864f959 Mon Sep 17 00:00:00 2001 From: Klaus Hartl Date: Wed, 5 Nov 2008 11:02:06 +0000 Subject: [PATCH] UI Tabs: removed equalize extension --- ui/ui.tabs.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/ui/ui.tabs.js b/ui/ui.tabs.js index 7fb7f0699..1a878be02 100644 --- a/ui/ui.tabs.js +++ b/ui/ui.tabs.js @@ -557,18 +557,4 @@ $.extend($.ui.tabs.prototype, { } }); -$.extend($.ui.tabs.prototype, { - equalize: function() { - var heights = this.$panels.map(function() { - return $(this).height(); - }) - .get() - .sort(function(a, b) { - return b - a; - }); - // set all panels to highest height - this.$panels.css('height', heights[0]); - } -}); - })(jQuery);