client/annotviz/app/js/main.js
changeset 87 9611905b58fe
parent 85 eff9460bd4f2
child 89 b4bd49f01837
child 93 79ae42ad97d4
equal deleted inserted replaced
86:e944c017b8c8 87:9611905b58fe
   104         noteDict[data.content[2]][note] = {ts: data.content[1], velocity:velocity};
   104         noteDict[data.content[2]][note] = {ts: data.content[1], velocity:velocity};
   105     }
   105     }
   106 }
   106 }
   107 
   107 
   108 function addLine(){
   108 function addLine(){
   109     ts = new Date();
   109     var ts = new Date();
   110     for(var i=0;i<containerList.length;i++){
   110     for(var i=0;i<containerList.length;i++){
   111         containerList[i].addLine(ts);
   111         containerList[i].addLine(ts);
   112     }
   112     }
   113 }
   113 }
   114 
   114