mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-01 15:54:53 +00:00
15 lines
324 B
JavaScript
15 lines
324 B
JavaScript
$(document).ready(function() {
|
|
$(window).on("scroll", function() {
|
|
$(".navbar").toggleClass("compressed", $(window).scrollTop() >= 20);
|
|
});
|
|
});
|
|
|
|
|
|
/*
|
|
* Debian/Ubuntu download dropdowns
|
|
*/
|
|
function updateDebianSeries(select) {
|
|
var deb = document.getElementById('series-deb');
|
|
deb.innerHTML = select.value;
|
|
}
|