summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/wwwroot/Content
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-12-01 22:55:42 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-12-01 22:55:42 -0500
commit01131cb50e36cb6884a43a5a32ec4fff69a92085 (patch)
tree2b7bb65c8be86700bd7fda798ad450dbb6e37def /src/SMAPI.Web/wwwroot/Content
parent424578539408aea2685c86d0f46b87573c37363a (diff)
downloadSMAPI-01131cb50e36cb6884a43a5a32ec4fff69a92085.tar.gz
SMAPI-01131cb50e36cb6884a43a5a32ec4fff69a92085.tar.bz2
SMAPI-01131cb50e36cb6884a43a5a32ec4fff69a92085.zip
rm unneeded log parser debug info
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content')
-rw-r--r--src/SMAPI.Web/wwwroot/Content/js/log-parser.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
index 19287c24..d5c6974a 100644
--- a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
+++ b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
@@ -270,11 +270,8 @@ smapi.logParser = function(sectionUrl, pasteID) {
function loadData() {
try {
stage = "loadData.Pre";
- var start = performance.now();
parseData();
renderData();
- var end = performance.now();
- $(".always").prepend("<div>Log processed in: " + (Math.round((end - start) * 100) / 100) + ' ms (<a id="viewraw" href="#">View raw</a>)</div><br />');
$("#viewraw").on("click", function() {
$("#dataraw").val($("#input").val());
$("#popup-raw").fadeIn();