').append(
+ $('').text(formatDate(cur[0]))
+ ).append(
+ $(' | ').text(cur[1])
+ ).append(
+ $(' | ').text(cur[2])
+ );
+
+ $tbody.append($tr);
+ }
+
+ $table.append($tbody);
+ return $table;
+}
+
/**
* Tooltip creator - creates a tooltip near the cursor
@params: - position: the object returned by the hover or click event
diff --git a/lsp/main.js b/lsp/main.js
index 3d9ef43f..8940c81a 100644
--- a/lsp/main.js
+++ b/lsp/main.js
@@ -1241,54 +1241,6 @@
}
});
- function getLogsdata(){
- getData(function(data){
- settings.settings.log = data.log;
-
- $('#page table').remove();
- $('#page').append(buildLogsTable());
- });
- }
-
- function buildLogsTable(){
- $table = $('');
- $table.html("Date(MM/DD/YYYY) | Type | Message | ");
- $tbody = $('');
-
- if(!settings.settings.log)
- {
- return; // no logs, so just bail
- }
- var i, cur, $tr,
- logs = settings.settings.log,
- len = logs.length;
-
- if(len >= 2 && settings.settings.log[0][0] < settings.settings.log[len - 1][0])
- {
- logs.reverse();
- }
-
- $tbody.html('');
-
- for(i = 0; i < len; i++)
- {
- cur = settings.settings.log[i];
-
- $tr = $('').append(
- $('').text(formatDate(cur[0]))
- ).append(
- $(' | ').text(cur[1])
- ).append(
- $(' | ').text(cur[2])
- );
-
- $tbody.append($tr);
- }
-
- $table.append($tbody);
- return $table;
- }
-
break;
case 'server stats':
diff --git a/lsp/style.css b/lsp/style.css
index 9b958275..3f3f6e12 100644
--- a/lsp/style.css
+++ b/lsp/style.css
@@ -309,6 +309,11 @@ button,
text-transform: uppercase;
}
+span {
+ font-weight: normal;
+ text-transform: none ;
+}
+
.nocapitals
{
| |