various fixes
This commit is contained in:
parent
2d9d71c91f
commit
678bb73e1e
7 changed files with 160 additions and 108 deletions
|
@ -22,6 +22,19 @@ class Message {
|
|||
content;
|
||||
static del;
|
||||
static resolve;
|
||||
/*
|
||||
weakdiv:WeakRef<HTMLDivElement>;
|
||||
set div(e:HTMLDivElement){
|
||||
if(!e){
|
||||
this.weakdiv=null;
|
||||
return;
|
||||
}
|
||||
this.weakdiv=new WeakRef(e);
|
||||
}
|
||||
get div(){
|
||||
return this.weakdiv?.deref();
|
||||
}
|
||||
//*/
|
||||
div;
|
||||
member;
|
||||
reactions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue