Please disable Adblockers and enable JavaScript for domain CEWebS.cs.univie.ac.at! We have NO ADS, but they may interfere with some of our course material.

Name: orgviz-js/lib/subject.js 
1:
var Subject = function(shortid){
2:
  this.shortid    = shortid;
3:
  Subject.counter += 1;
4:
  this.id         = "s"+Subject.counter;
5:
  this.relations  = [];
6:
}
7:
 
8:
Subject.counter = 0;