aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'old-ui/app/app.js')
-rw-r--r--old-ui/app/app.js44
1 files changed, 21 insertions, 23 deletions
diff --git a/old-ui/app/app.js b/old-ui/app/app.js
index b1a9d68ba..7a380396e 100644
--- a/old-ui/app/app.js
+++ b/old-ui/app/app.js
@@ -93,32 +93,30 @@ App.prototype.render = function () {
log.debug('Main ui render function')
return (
- h('.old-ui', [
- h('.flex-column.full-height', {
- style: {
- // Windows was showing a vertical scroll bar:
- overflow: 'hidden',
- position: 'relative',
- alignItems: 'center',
- },
- }, [
+ h('.flex-column.full-height', {
+ style: {
+ // Windows was showing a vertical scroll bar:
+ overflow: 'hidden',
+ position: 'relative',
+ alignItems: 'center',
+ },
+ }, [
- // app bar
- this.renderAppBar(),
- this.renderNetworkDropdown(),
- this.renderDropdown(),
+ // app bar
+ this.renderAppBar(),
+ this.renderNetworkDropdown(),
+ this.renderDropdown(),
- this.renderLoadingIndicator({ isLoading, isLoadingNetwork, loadMessage }),
+ this.renderLoadingIndicator({ isLoading, isLoadingNetwork, loadMessage }),
- // panel content
- h('.app-primary' + (transForward ? '.from-right' : '.from-left'), {
- style: {
- width: '100%',
- },
- }, [
- this.renderPrimary(),
- ]),
- ])
+ // panel content
+ h('.app-primary' + (transForward ? '.from-right' : '.from-left'), {
+ style: {
+ width: '100%',
+ },
+ }, [
+ this.renderPrimary(),
+ ]),
])
)
}