Allower a bigger diff before not displaying it

This commit is contained in:
Pieter de Bie
2008-06-14 21:47:20 +02:00
parent 1ef4fe8a6b
commit 2d1324479e
+1 -1
View File
@@ -44,7 +44,7 @@ var doeHet = function() {
});
$("message").innerHTML = commit.message.replace(/\n/g,"<br>");
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";