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

Commit 83c0718

Browse files
Fix 026a195. Block scoping problem.
1 parent 2d8a4d1 commit 83c0718

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

app/ux/WebView.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -361,14 +361,14 @@ Ext.define('Hamsket.ux.WebView',{
361361
} else {
362362
callback(false);
363363
}
364-
return webContents;
365-
});
366-
me.down('statusbar').keep = true;
367-
me.down('statusbar').show();
368-
me.down('statusbar').setStatus({
369-
text: '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> Certification Warning'
364+
me.down('statusbar').keep = true;
365+
me.down('statusbar').show();
366+
me.down('statusbar').setStatus({
367+
text: '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> Certification Warning'
368+
});
369+
me.down('statusbar').down('button').show();
370+
370371
});
371-
me.down('statusbar').down('button').show();
372372
return webContents;
373373
}).catch(error => {
374374
console.error(error);

0 commit comments

Comments
 (0)