PhotoShare/views/js/comment_list.js
Muhammad Anas Rashid 34753111ed My First Web application .. a real shitty one
My First Web application .. a real shitty one
2016-01-28 23:32:09 +05:00

23 lines
447 B
JavaScript

/**
* Created by mubashir on 9/22/15.
*/
function comment(commentstr,name,userid){
this.value=commentstr;
this.name=name;
this.userid=userid;
}
var comment_list_array=new Array();
function comment_list(id){
this.myid=id;
comment_list_array[id]=this;
this.size=0;
this.commentarr=new Array();
this.check=0;
}
comment_list.prototype.add_comment=function (newcomment){
this.commentarr[this.size++]=newcomment;
}