mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
made logs display reverse chronological, so no need to autoscroll the log window
This commit is contained in:
parent
ce15a79302
commit
98bb6c387a
@ -3,7 +3,7 @@ $(function(){
|
|||||||
|
|
||||||
function update($msg) {
|
function update($msg) {
|
||||||
var $line = $('<li>').append($msg);
|
var $line = $('<li>').append($msg);
|
||||||
$('#log').append($line);
|
$('#log').prepend($line);
|
||||||
}
|
}
|
||||||
|
|
||||||
function copy_to_clipboard() {
|
function copy_to_clipboard() {
|
||||||
|
Loading…
Reference in New Issue
Block a user