More misc improvements. Cursor Logic, Screen Width, consoleLogs--, Heroku Renaming

This commit is contained in:
Curtis SerVaas
2014-10-11 09:50:32 -04:00
parent a90d168612
commit 3dabfe79fd
13 changed files with 246 additions and 332 deletions
+4 -1
View File
@@ -32,6 +32,7 @@ function executeOperation(operation){
var type = operation[0];
var data = operation[1];
var socket = operation[2];
// console.log("executeOperation");
switch(type){
case "newNode":
@@ -62,8 +63,10 @@ function removeNode(data, socket){
var parId = data[2];
var author = data[3];
// data[3] = null; //improve efficiency.
var curtisId = "53e4079cd7dbc73d16c87c53";
// console.log("MessageQueue.RemoveNode");
Node.removeNode(thisId, thisIndex, parId, author._id);
Node.removeNode(thisId, thisIndex, parId, curtisId);
}