Files
old-lab_ui/client/app/utilities/Topic.js
2019-05-31 18:29:32 -04:00

13 lines
253 B
JavaScript

function Topic (name) {
this.name = name;
this.bag = true;
this.type = "";
}
Array.prototype.indexOfTopic = function(name) {
for (var i = 0; i < this.length; i++)
if (this[i].name == name)
return i;
return -1;
}