summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/js/index.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/public/js/index.js b/public/js/index.js
index 8216b61a..41618ccf 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -138,7 +138,7 @@ function wrapTextWith(cm, symbol) {
}
var idleTime = 300000; //5 mins
-var updateViewDebounce = 200;
+var updateViewDebounce = 100;
var cursorMenuThrottle = 50;
var cursorActivityDebounce = 50;
var cursorAnimatePeriod = 100;
@@ -1761,6 +1761,7 @@ function initRevisionViewer() {
});
revisionInsertAnnotation = revisionViewer.annotateScrollbar({ className:"CodeMirror-insert-match" });
revisionDeleteAnnotation = revisionViewer.annotateScrollbar({ className:"CodeMirror-delete-match" });
+ checkRevisionViewer();
}
$('#revisionModalDownload').click(function () {
if (!revision) return;
@@ -3248,7 +3249,9 @@ function refreshView() {
updateViewInner();
}
-var updateView = _.debounce(updateViewInner, updateViewDebounce);
+var updateView = _.debounce(function () {
+ editor.operation(updateViewInner);
+}, updateViewDebounce);
var lastResult = null;
var postUpdateEvent = null;