Fix the overFiringEditing/OverSnapping issue

This commit is contained in:
Curtis SerVaas
2014-10-21 19:45:16 -04:00
parent 366faa2ee6
commit e97ef73fc4
+1
View File
@@ -84,6 +84,7 @@ function updateText(id, newText, authorId){
if(err || node == null){ if(err || node == null){
return; return;
} }
if(node.text==newText){return;}
node.timestamp = Date.now(); node.timestamp = Date.now();
node.text = newText; node.text = newText;
node.authorId = authorId; node.authorId = authorId;