Having to click the table header for sorting is more of less obvious with header text inside and anchor
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
parent
a5b9d7ab08
commit
56caa89f80
@ -52,13 +52,6 @@ AJAX.registerOnload('db_central_columns.js', function () {
|
||||
'width' : '10em',
|
||||
'-moz-box-sizing' : 'border-box'
|
||||
});
|
||||
$('.column_heading').mouseenter(function(){
|
||||
PMA_tooltip(
|
||||
$(this),
|
||||
'th',
|
||||
PMA_messages.strSortHint
|
||||
);
|
||||
});
|
||||
window.scrollTo(0, 0);
|
||||
$(document).on("keyup", ".filter_rows", function () {
|
||||
var cols = ["Name", "Type", "Length/Values", "Collation", "Null", "Extra", "Default"];
|
||||
|
||||
@ -30,11 +30,5 @@ AJAX.registerOnload('server_status_queries.js', function () {
|
||||
// Could not load chart, no big deal...
|
||||
}
|
||||
|
||||
/*** Table sort tooltip ***/
|
||||
PMA_tooltip(
|
||||
$('table.sortable>thead>tr:first').find('th'),
|
||||
'th',
|
||||
PMA_messages.strSortHint
|
||||
);
|
||||
initTableSorter('statustabs_queries');
|
||||
});
|
||||
|
||||
@ -16,12 +16,6 @@ AJAX.registerTeardown('server_status_variables.js', function () {
|
||||
});
|
||||
|
||||
AJAX.registerOnload('server_status_variables.js', function () {
|
||||
/*** Table sort tooltip ***/
|
||||
PMA_tooltip(
|
||||
$('table.sortable>thead>tr:first').find('th'),
|
||||
'th',
|
||||
PMA_messages.strSortHint
|
||||
);
|
||||
|
||||
// Filters for status variables
|
||||
var textFilter = null;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user