about summary refs log tree commit diff
path: root/public
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-02-23 01:49:22 +0000
committerJonathan "Duke" Leto <jonathan@leto.net>2011-02-23 21:03:31 +0000
commitc70057019403d50175a8e937ed784132aa77e512 (patch)
treedc153f44309c8818461ac3471e1c7f81fa49d2bd /public
parentAdd a useful comment (diff)
downloadjitterbug-c70057019403d50175a8e937ed784132aa77e512.tar.gz
Don't try to embed TAP output into current page
Diffstat (limited to 'public')
-rw-r--r--public/js/common.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/public/js/common.js b/public/js/common.js
index 646f80e..93c080a 100644
--- a/public/js/common.js
+++ b/public/js/common.js
@@ -4,6 +4,7 @@ $(document).ready(function() {
         var class = "#commits-day-" + day;
         $(class).toggle();
     });
+    /* This times out on large test outputs
     $('.builds a').click(function() {
         var url = $(this).attr("href");
         var id = $(this).parents('.commit').attr('id');
@@ -12,4 +13,5 @@ $(document).ready(function() {
         });
         return false;
     })
+    */
 })