1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Add back scroll code

This commit is contained in:
Hillel Coren 2018-01-17 13:17:45 +02:00
parent dae4df2a3e
commit 632b42716e

View File

@ -198,6 +198,18 @@
}
});
// set timeout onDomReady
setTimeout(delayedFragmentTargetOffset, 500);
// add scroll offset to fragment target (if there is one)
function delayedFragmentTargetOffset(){
var offset = $(':target').offset();
if (offset) {
var scrollto = offset.top - 180; // minus fixed header height
$('html, body').animate({scrollTop:scrollto}, 0);
}
}
});
</script>