mirror of https://github.com/status-im/codimd.git
Updated to lock the navbar on changeMode
This commit is contained in:
parent
c9f35b9aa0
commit
33cdec2fd4
|
@ -550,6 +550,7 @@ function toggleMode() {
|
|||
}
|
||||
|
||||
function changeMode(type) {
|
||||
lockNavbar();
|
||||
saveInfo();
|
||||
if (type)
|
||||
currentMode = type;
|
||||
|
@ -616,6 +617,16 @@ function changeMode(type) {
|
|||
ui.toolbar.view.addClass("active");
|
||||
modeIcon.addClass('fa-toggle-on');
|
||||
}
|
||||
unlockNavbar();
|
||||
}
|
||||
|
||||
function lockNavbar() {
|
||||
$('.navbar').addClass('locked');
|
||||
}
|
||||
|
||||
var unlockNavbar = _.debounce(function () {
|
||||
$('.navbar').removeClass('locked');
|
||||
}, 200);
|
||||
}
|
||||
|
||||
//button actions
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
target.clearQueue();
|
||||
target.stop();
|
||||
var currentScroll = $(this).scrollTop();
|
||||
if (currentScroll > hideOffset) {
|
||||
if (currentScroll > hideOffset && !target.hasClass('locked')) {
|
||||
if(Math.abs(previousScroll - currentScroll) < 50) return;
|
||||
if (currentScroll > previousScroll) {
|
||||
// Action on scroll down
|
||||
|
|
Loading…
Reference in New Issue