From e22bd9f5a67734a09f7ede5bc06ba503ecb967e8 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Sat, 5 Jan 2013 20:56:11 +0000 Subject: Limit the table to the 10 most recent builds --- autobuild/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobuild/index.html b/autobuild/index.html index 86847b0..6c75c7b 100644 --- a/autobuild/index.html +++ b/autobuild/index.html @@ -8,7 +8,7 @@ function drawTable() { var d = new google.visualization.DataTable(window.data); var table = new google.visualization.Table(document.getElementById('table_div')); - table.draw(d, {showRowNumber: false, allowHtml: true}); + table.draw(d, {showRowNumber: false, allowHtml: true, page: 'enable'}); var successView = new google.visualization.DataView(d); successView.setColumns([0,9]); -- cgit v1.2.1