style: lint public/persona.js

main
Julian Lam 3 years ago
parent 0717c5bb1c
commit 430dfd592b

@ -30,8 +30,11 @@ $(document).ready(function () {
const headerRect = headerEl.getBoundingClientRect(); const headerRect = headerEl.getBoundingClientRect();
const headerStyle = window.getComputedStyle(headerEl); const headerStyle = window.getComputedStyle(headerEl);
let offset = headerRect.y + headerRect.height + let offset =
(parseInt(headerStyle.marginTop, 10) || 0) + (parseInt(headerStyle.marginBottom, 10) || 0); headerRect.y + headerRect.height +
(parseInt(headerStyle.marginTop, 10) || 0) +
(parseInt(headerStyle.marginBottom, 10) || 0);
// body element itself introduces a hardcoded 70px padding on desktop resolution // body element itself introduces a hardcoded 70px padding on desktop resolution
if (env === 'lg') { if (env === 'lg') {
offset -= 70; offset -= 70;
@ -253,7 +256,9 @@ $(document).ready(function () {
$(window).on('resize action:ajaxify.start', function () { $(window).on('resize action:ajaxify.start', function () {
navSlideout.close(); navSlideout.close();
if (chatsSlideout) { chatsSlideout.close(); } if (chatsSlideout) {
chatsSlideout.close();
}
$('.account .cover').css('top', $('[component="navbar"]').height()); $('.account .cover').css('top', $('[component="navbar"]').height());
}); });

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save