Improved fix for bug #3313210
This commit is contained in:
@@ -1152,7 +1152,7 @@ $(document).ready(function() {
|
|||||||
/**
|
/**
|
||||||
* vertical column marking in horizontal mode when clicking the column header
|
* vertical column marking in horizontal mode when clicking the column header
|
||||||
*/
|
*/
|
||||||
$('.column_heading.pointer').live('click', function() {
|
$('.column_heading.marker').live('click', function() {
|
||||||
PMA_changeClassForColumn($(this), 'marked');
|
PMA_changeClassForColumn($(this), 'marked');
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
@@ -870,6 +870,9 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
|
|||||||
if ($GLOBALS['cfg']['BrowsePointerEnable'] == true) {
|
if ($GLOBALS['cfg']['BrowsePointerEnable'] == true) {
|
||||||
$th_class[] = 'pointer';
|
$th_class[] = 'pointer';
|
||||||
}
|
}
|
||||||
|
if ($GLOBALS['cfg']['BrowseMarkerEnable'] == true) {
|
||||||
|
$th_class[] = 'marker';
|
||||||
|
}
|
||||||
echo ' class="' . implode(' ', $th_class) . '"';
|
echo ' class="' . implode(' ', $th_class) . '"';
|
||||||
|
|
||||||
if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') {
|
if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') {
|
||||||
|
Reference in New Issue
Block a user