mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:13:08 +02:00
parent
31ff3a22b7
commit
269d1e72cb
2 changed files with 3 additions and 2 deletions
|
@ -24,6 +24,7 @@
|
||||||
- チャンネルのお気に入りが無限に読み込まれる問題を修正
|
- チャンネルのお気に入りが無限に読み込まれる問題を修正
|
||||||
- さがすのローカルユーザー(ピンどめ)が無限に生成される問題を修正
|
- さがすのローカルユーザー(ピンどめ)が無限に生成される問題を修正
|
||||||
- チャンネルを新規作成できない問題を修正
|
- チャンネルを新規作成できない問題を修正
|
||||||
|
- ユーザープレビューが表示されない問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- 通知読み込みでエラーが発生する場合がある問題を修正
|
- 通知読み込みでエラーが発生する場合がある問題を修正
|
||||||
|
|
|
@ -13,8 +13,6 @@ export class UserPreview {
|
||||||
this.el = el;
|
this.el = el;
|
||||||
this.user = user;
|
this.user = user;
|
||||||
|
|
||||||
this.attach();
|
|
||||||
|
|
||||||
this.show = this.show.bind(this);
|
this.show = this.show.bind(this);
|
||||||
this.close = this.close.bind(this);
|
this.close = this.close.bind(this);
|
||||||
this.onMouseover = this.onMouseover.bind(this);
|
this.onMouseover = this.onMouseover.bind(this);
|
||||||
|
@ -22,6 +20,8 @@ export class UserPreview {
|
||||||
this.onClick = this.onClick.bind(this);
|
this.onClick = this.onClick.bind(this);
|
||||||
this.attach = this.attach.bind(this);
|
this.attach = this.attach.bind(this);
|
||||||
this.detach = this.detach.bind(this);
|
this.detach = this.detach.bind(this);
|
||||||
|
|
||||||
|
this.attach();
|
||||||
}
|
}
|
||||||
|
|
||||||
private show() {
|
private show() {
|
||||||
|
|
Loading…
Reference in a new issue