Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2012-11-25 18:33:54 +0400
committerRouslan Placella <rouslan@placella.com>2012-11-25 18:33:54 +0400
commit9a3e110127869fa650e3cf8ff3297ba5ad9f9635 (patch)
tree5bb59ec20114195ebfc396883cbd0fffbd77aee2 /js/server_plugins.js
parentb2f2f589e664d672145b4479a92e0b206f500d31 (diff)
Fixed calls to undefined function
Diffstat (limited to 'js/server_plugins.js')
-rw-r--r--js/server_plugins.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/server_plugins.js b/js/server_plugins.js
index d87a4ce911..17391affbf 100644
--- a/js/server_plugins.js
+++ b/js/server_plugins.js
@@ -11,7 +11,7 @@ AJAX.registerOnload('server_plugins.js', function() {
cookie: { name: 'pma_serverStatusTabs', expires: 1 },
show: function(event, ui) {
// Fixes line break in the menu bar when the page overflows and scrollbar appears
- menuResize($('#topmenu'));
+ $('#topmenu').menuResizer('resize');
// 'Plugins' tab is too high due to hiding of 'Modules' by negative left position,
// hide tabs by changing display to fix it
$(ui.panel).closest('.ui-tabs').find('> div').not(ui.panel).css('display', 'none');