Remove stray console.log

This commit is contained in:
Dan Sosedoff 2022-12-07 12:04:33 -06:00
parent 38051b9465
commit 138fd8af09
No known key found for this signature in database
GPG Key ID: 26186197D282B164

View File

@ -615,9 +615,11 @@ function renderResultsView(title, content) {
var title = $("<div/>").prop("class", "title").html(title);
var content = $("<pre/>").text(content);
console.log(content);
$("<div/>").html("<i class='fa fa-copy'></i>").addClass("copy").appendTo(content);
$("<div/>").
html("<i class='fa fa-copy'></i>").
addClass("copy").
appendTo(content);
$("#results_view").html("");
title.appendTo("#results_view");