Commit d39c14e0 by Kim Peace

Removed unused console print

parent 6d18ffaa
...@@ -109,7 +109,6 @@ ChatRoom.loadMessages = function (joinRoomID, joinRoomName) { ...@@ -109,7 +109,6 @@ ChatRoom.loadMessages = function (joinRoomID, joinRoomName) {
}; };
ChatRoom.configureRoomMenu = function () { ChatRoom.configureRoomMenu = function () {
console.log("peacekim:: ChatRoom.configureRoomMenu");
if (roomInfo.roomType == ChatRoomType.DM) { if (roomInfo.roomType == ChatRoomType.DM) {
$("#roomMenu").removeClass("none"); $("#roomMenu").removeClass("none");
} else { } else {
......
...@@ -51,7 +51,6 @@ document.addEventListener("DOMContentLoaded", function () { ...@@ -51,7 +51,6 @@ document.addEventListener("DOMContentLoaded", function () {
}); });
ChatRoom.bindResize = function () { ChatRoom.bindResize = function () {
console.log("peacekim:: ChatRoom.bindResize");
const footerHeight = $(".footer-wrap").height(); const footerHeight = $(".footer-wrap").height();
window.addEventListener("resize", function () { window.addEventListener("resize", function () {
var afterHeight = window.innerHeight; var afterHeight = window.innerHeight;
......
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