Commit 09c1a264 by Kim Peace

Fixe to display collabofaiton type log for show and hide host

parent d90c5699
......@@ -336,7 +336,10 @@ CollaborationFeature.updateHost = function () {
};
CollaborationUI.showHostButtons = function () {
console.log("peacekim:: CollaborationUI.showHostButtons");
console.log(
"peacekim:: CollaborationUI.showHostButtons, collaborationType: " +
globalUserInfo.collaborationType
);
$(".host_contents").removeClass("none");
if (globalUserInfo.collaborationType == COLLABORATION_TYPE.CAMERA) {
$(".photo_select_button").removeClass("none");
......@@ -348,7 +351,10 @@ CollaborationUI.showHostButtons = function () {
};
CollaborationUI.hideHostButtons = function () {
console.log("peacekim:: CollaborationUI.hideHostButtons");
console.log(
"peacekim:: CollaborationUI.hideHostButtons, collaborationType: " +
globalUserInfo.collaborationType
);
$(".host_contents").addClass("none");
if (globalUserInfo.collaborationType == COLLABORATION_TYPE.CAMERA) {
$(".photo_select_button").addClass("none");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment