Skip to content

Commit

Permalink
Fix for Error 147
Browse files Browse the repository at this point in the history
  • Loading branch information
dagalufh committed Apr 10, 2016
1 parent a661d9b commit 85df1a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion http/jscript/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ webtools.show_log = function(filename) {
});
} else {
$('#ContentHeader').html('Logfile: ' + filename);
$('#navfoot').html('<input type="text" id="webtoolssearchKeyword"><button class="btn btn-default btn-xs" onclick="webtools.searchkeyword(\'logtable\')">Search keyword</button> <button class="btn btn-default btn-xs" onclick="webtools.previous()" id="webtoolssearchbuttonprevious">Previous</button><button class="btn btn-default btn-xs" onclick="webtools.next()" id="webtoolssearchbuttonnext">Next</button> <button class="btn btn-default btn-xs" onclick="webtools.jumptotop()">Jump to Top</button> <span id="webtoolssearchkeywordresult"></span>');
$('#navfoot').html('<input type="text" id="webtoolssearchKeyword" onkeydown="if (event.keyCode == 13) { webtools.searchkeyword(\'logtable\'); }"><button class="btn btn-default btn-xs" onclick="webtools.searchkeyword(\'logtable\')">Search keyword</button> <button class="btn btn-default btn-xs" onclick="webtools.previous()" id="webtoolssearchbuttonprevious">Previous</button><button class="btn btn-default btn-xs" onclick="webtools.next()" id="webtoolssearchbuttonnext">Next</button> <button class="btn btn-default btn-xs" onclick="webtools.jumptotop()">Jump to Top</button> <span id="webtoolssearchkeywordresult"></span>');
webtools.clearresult();
$.ajax({
url: '/webtools2',
Expand Down
2 changes: 1 addition & 1 deletion http/modules/logviewer/jscript/logviewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ logviewer.start = function() {
$('#ContentBody').html('');
$('#ContentFoot').html('');
logviewer.fetchlogfiles();
$('#navfoot').html('<input type="text" id="webtoolssearchKeyword"><button class="btn btn-default btn-xs" onclick="webtools.searchkeyword(\'logtable\')">Search keyword</button> <button class="btn btn-default btn-xs" onclick="webtools.previous()" id="webtoolssearchbuttonprevious">Previous</button><button class="btn btn-default btn-xs" onclick="webtools.next()" id="webtoolssearchbuttonnext">Next</button> <button class="btn btn-default btn-xs" onclick="webtools.jumptotop()">Jump to Top</button> <span id="webtoolssearchkeywordresult"></span>');
$('#navfoot').html('<input type="text" id="webtoolssearchKeyword" onkeydown="if (event.keyCode == 13) { webtools.searchkeyword(\'logtable\'); }"><button class="btn btn-default btn-xs" onclick="webtools.searchkeyword(\'logtable\')">Search keyword</button> <button class="btn btn-default btn-xs" onclick="webtools.previous()" id="webtoolssearchbuttonprevious">Previous</button><button class="btn btn-default btn-xs" onclick="webtools.next()" id="webtoolssearchbuttonnext">Next</button> <button class="btn btn-default btn-xs" onclick="webtools.jumptotop()">Jump to Top</button> <span id="webtoolssearchkeywordresult"></span>');
webtools.clearresult();
$('#LogfileList').change(function() {
// Display loading screen when fetching.
Expand Down

0 comments on commit 85df1a3

Please sign in to comment.