'js'
This commit is contained in:
parent
50bef511c2
commit
27f1981422
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue