summaryrefslogtreecommitdiff
path: root/public/js/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/index.js')
-rw-r--r--public/js/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js
index 0a4395ee..bbb0d3be 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -1691,7 +1691,7 @@ function selectRevision(time) {
// mark the text which have been insert or delete
if (revision.patch.length > 0) {
var bias = 0;
- for (j = 0; j < revision.patch.length; j++) {
+ for (var j = 0; j < revision.patch.length; j++) {
var patch = revision.patch[j];
var currIndex = patch.start1 + bias;
for (var i = 0; i < patch.diffs.length; i++) {