Skip to content

Commit

Permalink
Scan now use prepend for displaying warning feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
hernantas committed Oct 20, 2016
1 parent 7bd3178 commit 3959047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/scan.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function checkStatusScan()
addTime(data.time);
for (var i = 0; i < data.warning.length; i++)
{
$(".warning_debug").append("<div><b>Warning: </b>"+data.warning[i]+"</div>");
$(".warning_debug").prepend("<div><b>Warning: </b>"+data.warning[i]+"</div>");
}
checkStatusScan();
}
Expand Down

0 comments on commit 3959047

Please sign in to comment.