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:
Madhura Jayaratne 2015-02-11 11:31:45 +05:30
parent a5b9d7ab08
commit 56caa89f80
3 changed files with 0 additions and 19 deletions

View File

@ -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"];

View File

@ -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');
});

View File

@ -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;