aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKlaus Hartl <klaus.hartl@googlemail.com>2008-11-05 11:02:06 +0000
committerKlaus Hartl <klaus.hartl@googlemail.com>2008-11-05 11:02:06 +0000
commitf425cae7c4e894c6aa9fc1fefa8e5a426864f959 (patch)
tree4c5232f78d99a5522a622b7c3804ab710b0f078c
parent7e11903bebb39612f323724d4419c84e01c6be12 (diff)
downloadjquery-ui-f425cae7c4e894c6aa9fc1fefa8e5a426864f959.tar.gz
jquery-ui-f425cae7c4e894c6aa9fc1fefa8e5a426864f959.zip
UI Tabs: removed equalize extension
-rw-r--r--ui/ui.tabs.js14
1 files changed, 0 insertions, 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);