10108 marketplace category cannot scroll

This commit is contained in:
Alexander Ivash 2017-12-06 02:47:19 +03:00
parent c80039ea87
commit c007c6d00f

View file

@ -327,6 +327,19 @@
});
}
// fix for 10108 - marketplace category cannot scroll
function injectAddScrollbarToCategories() {
$('#categories-dropdown').on('show.bs.dropdown', function () {
$('body > div.container').css('display', 'none')
$('#categories-dropdown > ul.dropdown-menu').css({ 'overflow': 'auto', 'height': 'calc(100vh - 110px)' })
});
$('#categories-dropdown').on('hide.bs.dropdown', function () {
$('body > div.container').css('display', '')
$('#categories-dropdown > ul.dropdown-menu').css({ 'overflow': '', 'height': '' })
});
}
function injectHiFiCode() {
if (commerceMode) {
maybeAddLogInButton();
@ -358,6 +371,7 @@
}
injectUnfocusOnSearch();
injectAddScrollbarToCategories();
}
function injectHiFiItemPageCode() {