20210218(목)
2021-02-18
1. 학습 날짜
2. 학습 시간
3. 학습 범위 및 주제
4. 학습 목표
5. 학습 정리
6. 상세 학습 내용
7. 오늘 학습 내용에 대한 개인적인 총평
8. 다음 학습 계획
Last updated
Last updated
this.fetch({
success: function (collection, response, options) {
...
,
error: function () {
...
}
}) showInfoMatchImposibleAndClose: function (user_model) {
if (
this.el.id == "rule-modal-view" ||
user_model.get("status") == "offline"
) {
Helper.info({
subject: "게임 진행 불가능",
description: "상대방이 게임 진행이 불가능한 상태입니다.",
});
this.close();
}
},
addLitsenToUserModel: function (view, user_id) {
let user_model = this.getUserModelInAppearanceCollections(user_id);
if (user_model == undefined || user_model.get("status") == "offline") {
return false;
}
view.listenTo(
user_model,
"change:status",
this.showInfoMatchImposibleAndClose
);
return true;
},