Merge branch 'master' into gettext

This commit is contained in:
Michal Čihař
2010-03-24 09:39:30 +01:00
8 changed files with 54 additions and 6 deletions

View File

@@ -2462,7 +2462,9 @@ function PMA_generate_slider_effect($id, $message)
$('<a href="#" id="anchor_<?php echo $id; ?>"><?php echo htmlspecialchars($message); ?></a>')
.insertBefore('#<?php echo $id; ?>')
.click(function() {
$('#<?php echo $id; ?>').slideToggle('normal', function() {
// the callback should be the 4th parameter but
// it only works as the second parameter
$('#<?php echo $id; ?>').toggle('drop', function() {
PMA_set_status_label_<?php echo $id; ?>();
});
});