Fix js bug.

This commit is contained in:
BoHung Chiu 2022-02-25 10:56:10 +08:00
parent e31e1e85e0
commit 8c0d8a955d
1 changed files with 4 additions and 4 deletions

View File

@ -55,11 +55,11 @@ $(document).ready(function(){
return Math.round(Number(num)*(10**Digit))/(10**Digit);
};
head_data.done(function(){
if(head_images.responseJSON['head_images'] != ''){
$('.header-nav').html(head_images.responseJSON['head_images']);
if(head_data.responseJSON['head_images'] != ''){
$('.header-nav').html(head_data.responseJSON['head_images']);
}
if(head_images.responseJSON['title'] != ''){
$('.navbar-brand').html(head_images.responseJSON['title']);
if(head_data.responseJSON['title'] != ''){
$('.navbar-brand').html(head_data.responseJSON['title']);
}
data['danger_texts'] = head_data.responseJSON['danger_texts'];
$('head title').text(head_data.responseJSON['page_title'])