Skip to content
Snippets Groups Projects
Commit 0bd6ce03 authored by Craig Earley's avatar Craig Earley
Browse files

output to author.html based on stop time

parent ced83277
Branches
No related merge requests found
<!DOCTYPE html>
<html>
<!DOCTYPE html> <html>
<head>
<title>Author Interface</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
......@@ -25,6 +24,7 @@ Stop URL's.<br><textarea name="stop" id="stop" cols="50" rows="1"></textarea><br
</form>
<p>Your URL:</p>
<p id="output"></p>
</body>
</html>
......@@ -46,6 +46,7 @@ $(window).load(function() {
console.log("started " + startTime);
console.log("stopped " + stopTime);
console.log("duration " + duration + " ms");
document.getElementById("output").innerHTML = stopTime;
});
// $("#reset-button").click(resetform);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment