remove line

This commit is contained in:
Shubham Mehrotra 2020-04-01 12:26:21 +05:30
parent 2bd1458990
commit dd88a81f92
1 changed files with 1 additions and 2 deletions

View File

@ -19,10 +19,9 @@
let contentHeight = $('.account-layout').css('height');
sidebarHeight = parseInt(sidebarHeight.substring(0, sidebarHeight.length - 2));
contentHeight = parseInt(contentHeight.substring(0, contentHeight.length - 2));
var height = sidebarHeight > contentHeight ? sidebarHeight + 30 : contentHeight;
let height = sidebarHeight > contentHeight ? sidebarHeight + 30 : contentHeight;
height = height + "px";
$('.account-content').css('height', height);