From 772ca5d30e3db1a611d3dd2f3447779d7e87ccae Mon Sep 17 00:00:00 2001 From: ansuz Date: Tue, 29 Mar 2016 17:01:57 +0200 Subject: [PATCH] comment out debugging line --- www/_socket/text-patcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/_socket/text-patcher.js b/www/_socket/text-patcher.js index bcbadb2e9..e0abd33e4 100644 --- a/www/_socket/text-patcher.js +++ b/www/_socket/text-patcher.js @@ -32,7 +32,7 @@ var applyChange = function(ctx, oldval, newval) { if (newval.length !== commonStart + commonEnd) { if (ctx.localChange) { ctx.localChange(true); } ctx.insert(commonStart, newval.slice(commonStart, newval.length - commonEnd)); - console.log("insert: " + newval.slice(commonStart, newval.length - commonEnd)); + //console.log("insert: " + newval.slice(commonStart, newval.length - commonEnd)); } };