Ignore:
Timestamp:
03/05/14 21:58:51 (10 years ago)
Author:
mmichalski
Message:

Draw neuron like in canvasutil

File:
1 edited

Legend:

Unmodified
Added
Removed
  • js/viewer-f0/js/Structures/Neuro.js

    r143 r161  
    55
    66Neuro.prototype = new Model();
     7
     8Neuro.prototype.getSchemeID = function(){
     9    var type = this._properties["d"]["VALUE"];
     10    type = type.replace("\"","");
     11    var index = type.indexOf(":");
     12    if(index != -1)
     13        type = type.substr(0, index);
     14
     15    return type;
     16}
Note: See TracChangeset for help on using the changeset viewer.