Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Fix 026a195. Block scoping problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGoddessInari committed Mar 1, 2022
1 parent 2d8a4d1 commit 83c0718
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/ux/WebView.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,14 +361,14 @@ Ext.define('Hamsket.ux.WebView',{
} else {
callback(false);
}
return webContents;
});
me.down('statusbar').keep = true;
me.down('statusbar').show();
me.down('statusbar').setStatus({
text: '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> Certification Warning'
me.down('statusbar').keep = true;
me.down('statusbar').show();
me.down('statusbar').setStatus({
text: '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> Certification Warning'
});
me.down('statusbar').down('button').show();

});
me.down('statusbar').down('button').show();
return webContents;
}).catch(error => {
console.error(error);
Expand Down

0 comments on commit 83c0718

Please sign in to comment.