diff options
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/app.js | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 511012fab..73791ec13 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -86,43 +86,6 @@ App.prototype.render = function() { this.renderPrimary(), ]), ]), - - // footer - // h('.app-footer.flex-row.flex-space-around', { - // style: { - // display: shouldHaveFooter ? 'flex' : 'none', - // alignItems: 'center', - // height: '56px', - // } - // }, [ - - // // settings icon - // h('i.fa.fa-cog.fa-lg' + (view === 'config' ? '.active' : '.cursor-pointer'), { - // style: { - // opacity: state.isUnlocked ? '1.0' : '0.0', - // transition: 'opacity 200ms ease-in', - // //transform: `translateX(${state.isUnlocked ? '0px' : '-100px'})`, - // }, - // onClick: function(ev) { - // state.dispatch(actions.showConfigPage()) - // }, - // }), - - // // toggle - // onOffToggle({ - // toggleMetamaskActive: this.toggleMetamaskActive.bind(this), - // isUnlocked: state.isUnlocked, - // }), - - // // help - // h('i.fa.fa-question.fa-lg.cursor-pointer', { - // style: { - // opacity: state.isUnlocked ? '1.0' : '0.0', - // }, - // onClick() { state.dispatch(actions.showInfoPage()) } - // }), - // ]), - ]) ) } |