antville/code/Vote/objectFunctions.js
2003-08-02 12:21:28 +00:00

9 lines
No EOL
211 B
JavaScript

/**
* constructor function for vote objects
*/
function constructor(choice, usr) {
this.choice = choice;
this.user = usr;
this.username = usr.name;
this.createtime = this.modifytime = new Date();
}