rest of the "remove flickering" fix
This commit is contained in:
@@ -2377,8 +2377,12 @@ window.addEvent('domready', function(){
|
||||
?>
|
||||
$('<?php echo $id; ?>').style.display="block";
|
||||
});
|
||||
// ]]>
|
||||
</script>
|
||||
document.write('<div id="<?php echo $id; ?>" <?php echo $GLOBALS['cfg']['InitialSlidersState'] == 'closed' ? ' style="display: none;"' : ''; ?>>');
|
||||
//]]>
|
||||
</script>
|
||||
<noscript>
|
||||
<div id="<?php echo $id; ?>">
|
||||
</noscript>
|
||||
<?php
|
||||
}
|
||||
|
||||
|
@@ -14,7 +14,6 @@ $events = PMA_DBI_fetch_result('SELECT EVENT_NAME, EVENT_TYPE FROM information_s
|
||||
|
||||
if ($events) {
|
||||
PMA_generate_slider_effect('events', $strEvents);
|
||||
echo '<div id="events">' . "\n";
|
||||
echo '<fieldset>' . "\n";
|
||||
echo ' <legend>' . $strEvents . '</legend>' . "\n";
|
||||
echo '<table border="0">';
|
||||
|
@@ -24,7 +24,6 @@ $routines = PMA_DBI_fetch_result('SELECT SPECIFIC_NAME,ROUTINE_NAME,ROUTINE_TYPE
|
||||
|
||||
if ($routines) {
|
||||
PMA_generate_slider_effect('routines', $strRoutines);
|
||||
echo '<div id="routines">' . "\n";
|
||||
echo '<fieldset>' . "\n";
|
||||
echo ' <legend>' . $strRoutines . '</legend>' . "\n";
|
||||
echo '<table border="0">';
|
||||
|
@@ -552,7 +552,6 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
|
||||
echo PMA_generate_common_hidden_inputs($url_params);
|
||||
echo '<br />';
|
||||
PMA_generate_slider_effect('displayoptions',$GLOBALS['strOptions']);
|
||||
echo '<div id="displayoptions">';
|
||||
echo '<fieldset>';
|
||||
|
||||
echo '<div class="formelement">';
|
||||
|
@@ -255,15 +255,6 @@ while (list($operator) = each($GLOBALS['cfg']['UnaryOperators'])) {
|
||||
<?php
|
||||
PMA_generate_slider_effect('searchoptions', $strOptions);
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
document.write('<div id="searchoptions" <?php echo $GLOBALS['cfg']['InitialSlidersState'] == 'closed' ? ' style="display: none;"' : ''; ?>>');
|
||||
//]]>
|
||||
</script>
|
||||
<noscript>
|
||||
<div id="searchoptions">
|
||||
</noscript>
|
||||
|
||||
<fieldset id="fieldset_select_fields">
|
||||
<legend><?php echo $strSelectFields; ?></legend>
|
||||
<select name="param[]" size="<?php echo min($fields_cnt, 10); ?>"
|
||||
|
@@ -547,7 +547,7 @@ if ($fields_cnt > 20) {
|
||||
* Displays indexes
|
||||
*/
|
||||
PMA_generate_slider_effect('tablestatistics_indexes', $strDetails);
|
||||
echo '<div id="tablestatistics_indexes">' . "\n";
|
||||
|
||||
if (! $tbl_is_view && ! $db_is_information_schema && 'ARCHIVE' != $tbl_type) {
|
||||
/**
|
||||
* Display indexes
|
||||
|
Reference in New Issue
Block a user