Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2012-04-22 03:12:30 +0400
committerRouslan Placella <rouslan@placella.com>2012-04-22 03:12:30 +0400
commitff66fdbdf9ed414dfa75c7e66f738887dd9efc25 (patch)
treeb86f946b150e3919cafce790faf716905b930c38 /js/server_variables.js
parentda0e04d179e8e11f3a0023e17305857c6fe6fbbd (diff)
Remove stray trailing whitespaces
Diffstat (limited to 'js/server_variables.js')
-rw-r--r--js/server_variables.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/js/server_variables.js b/js/server_variables.js
index f81266d003..3fcfc58833 100644
--- a/js/server_variables.js
+++ b/js/server_variables.js
@@ -26,7 +26,7 @@ $(function() {
// Filter options are invisible for disabled js users
$('fieldset#tableFilter').css('display','');
-
+
$('#filterText').keyup(function(e) {
if ($(this).val().length == 0) {
textFilter=null;
@@ -43,7 +43,7 @@ $(function() {
$('#filterText').val(name).trigger('keyup');
}
}
-
+
/* Table width limiting */
$('table.data').after($tmpDiv=$('<span>'+testString+'</span>'));
charWidth = $tmpDiv.width() / testString.length;
@@ -51,9 +51,9 @@ $(function() {
$(window).resize(limitTableWidth);
limitTableWidth();
-
- /* This function chops of long variable values to keep the table from overflowing horizontally
- * It does so by taking a test string and calculating an average font width and removing 'excess width / average font width'
+
+ /* This function chops of long variable values to keep the table from overflowing horizontally
+ * It does so by taking a test string and calculating an average font width and removing 'excess width / average font width'
* chars, so it is not very accurate.
*/
function limitTableWidth() {
@@ -96,12 +96,12 @@ $(function() {
});
}
}
-
+
/* Filters the rows by the user given regexp */
function filterVariables() {
var mark_next = false, firstCell;
odd_row = false;
-
+
$('table.filteredData tbody tr').each(function() {
firstCell = $(this).children(':first');