From 2d1324479e31745b0307c9436676dd497c368e77 Mon Sep 17 00:00:00 2001 From: Pieter de Bie Date: Sat, 14 Jun 2008 21:47:20 +0200 Subject: [PATCH] Allower a bigger diff before not displaying it --- html/commit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/commit.js b/html/commit.js index ad08c97..ff0f61a 100644 --- a/html/commit.js +++ b/html/commit.js @@ -44,7 +44,7 @@ var doeHet = function() { }); $("message").innerHTML = commit.message.replace(/\n/g,"
"); - if (commit.diff.length < 1000) { + if (commit.diff.length < 10000) { $("details").innerHTML = commit.diff; } else { $("details").innerHTML = "This diff is currently too large to watch in detailed mode";