Browse Source

Performance logging memo

pull/17/head
Matthew Holt 11 years ago
parent
commit
aa5610b937
  1. 7
      index.html

7
index.html

@ -89,7 +89,12 @@ $(function()
{ {
$('#parseText').click(function() $('#parseText').click(function()
{ {
render($.parse($('#tb').val(), userConfig())); // TODO: Build in some performance logging
//var start = performance.now();
var results = $.parse($('#tb').val(), userConfig());
//var end = performance.now();
//console.log((end - start) + " milliseconds");
render(results);
}); });
$('#parseFiles').click(function() $('#parseFiles').click(function()

Loading…
Cancel
Save