From cd357a9136ca31f0f9448c7591d798abc08fa4d2 Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 7 Apr 2016 17:03:30 +0200 Subject: [PATCH] turn an alert into a console.error --- www/_socket/main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/www/_socket/main.js b/www/_socket/main.js index e943aa949..f334929e9 100644 --- a/www/_socket/main.js +++ b/www/_socket/main.js @@ -190,8 +190,7 @@ define([ var localWorkInProgress = function (stage) { if (module.localChangeInProgress) { console.error("Applied a change while a local patch was in progress"); - alert("local work was interrupted at stage: " + stage); - //module.realtimeInput.onLocal(); + console.error("local work was interrupted at stage: " + stage); return true; } return false;