This commit is contained in:
ken 2026-04-10 18:36:43 +08:00
parent 50bef511c2
commit 27f1981422
1 changed files with 11 additions and 0 deletions

View File

@ -1163,6 +1163,16 @@ $(function() {
// 執行補強(設定延遲確保 jPlayer 已生成 DOM
setTimeout(fixJPlayerAccessibility, 500);
});
function removeHiddenElementsInsideBrand() {
// 選取 .navbar-brand 內部所有隱藏的元素
$('.navbar-brand *').filter(function() {
return $(this).css('display') === 'none';
}).remove(); // 徹底從 DOM 中移除該標籤
}
// 執行 function
removeHiddenElementsInsideBrand();
}
forFreeGo();
@ -2304,6 +2314,7 @@ $(function() {
// 延遲 600 毫秒執行,確保動態元件已載入
setTimeout(wrapGoBackTop, 500);
});
// 執行 member等高計算目前改用flexbox故mark掉 by ika 20160105
// $(window).load(function() {
// if ($('.index-member-3').length && $(window).width() > 992) {