Commit a368af94 by Lee Munkyeong

マージリクエストのコメント対応

parent a64b4d31
// 名前空間 // 名前空間
var CHAT_UI = {}; var CHAT_UI = {};
$(function(){ $(function() {
let navbarHeight = document.getElementsByClassName("navbar")[0].offsetHeight let navbarHeight = document.getElementsByClassName("navbar")[0].offsetHeight
let searchBarHeight = document.getElementsByClassName("search-bar-fixed")[0].offsetHeight let searchBarHeight = document.getElementsByClassName("search-bar-fixed")[0].offsetHeight
$(".tab-pane").css('padding', `${navbarHeight + 'px'} 0px 0px`) $(".tab-pane").css('padding', `${navbarHeight + 'px'} 0px 0px`)
...@@ -16,7 +16,7 @@ $(function(){ ...@@ -16,7 +16,7 @@ $(function(){
}); });
// Rotate // Rotate
$(window).on('resize', function(){ $(window).on('resize', function() {
if (CHAT_UTIL.isMobile()) { if (CHAT_UTIL.isMobile()) {
return; return;
} }
......
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