Preserve full site structure: articles, blog posts, downloads, BLV Express, sitemap, legacy CSS/JS

This commit is contained in:
Jarvis Prime
2026-03-23 20:24:05 +00:00
parent 46136b140e
commit 1f1a6e6f41
1036 changed files with 277162 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
(function($) {
$(document).ready(function() {
$(".d-menu li").each(function() {
var $this = $(this);
var dropdown = $this.find(".dropdown");
if (dropdown.size() == 1) {
$this.hover(function() {
$this.addClass("with-dropdown-hover");
dropdown.show();
}, function() {
$this.removeClass("with-dropdown-hover");
dropdown.hide();
});
}
});
$("input.inline-label").each(function() {
$(this).data("initial_value", $(this).val());
});
$("input.inline-label").focus(function() {
var el = $(this);
el.addClass("inline-label-focus");
if (el.val() == el.data("initial_value")) {
el.val("");
}
});
});
})(jQuery);