diff --git a/lsp/main.js b/lsp/main.js index 5b1a0cd0..b70d6ff2 100644 --- a/lsp/main.js +++ b/lsp/main.js @@ -655,7 +655,7 @@ refreshStreams(); $table = $('
Id | Type | Embed | Name | Status | Viewers | Edit | "); + $table.html("Id | Type | Embed | Name | Status | Viewers | Edit | "); $tbody = $(''); var stream, cstr, $tr; diff --git a/lsp/tablesort.js b/lsp/tablesort.js index 16551ff0..0138d593 100644 --- a/lsp/tablesort.js +++ b/lsp/tablesort.js @@ -89,7 +89,7 @@ // ==================================================== // // Do sorting when THs are clicked - table.delegate("th", "click", function(){ + table.delegate("th:not(.dontsort)", "click", function(){ if($(this).text().replace(/ /g, '') == '') {
---|