diff options
author | kumavis <aaron@kumavis.me> | 2017-09-30 02:50:24 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2017-09-30 02:50:24 +0800 |
commit | 19e7adad1920ac506b3ef5c639ec110a2615bd7c (patch) | |
tree | 8d696945a0a33eb7b85195b8ac04f07c2e574cdf /ui-dev.js | |
parent | cdf41c28573822c7c4d50efe7dfa34a062825d7f (diff) | |
download | dexon-wallet-19e7adad1920ac506b3ef5c639ec110a2615bd7c.tar.gz dexon-wallet-19e7adad1920ac506b3ef5c639ec110a2615bd7c.tar.zst dexon-wallet-19e7adad1920ac506b3ef5c639ec110a2615bd7c.zip |
development - fix ui dev
Diffstat (limited to 'ui-dev.js')
-rw-r--r-- | ui-dev.js | 51 |
1 files changed, 29 insertions, 22 deletions
@@ -61,30 +61,37 @@ const actions = { var css = MetaMaskUiCss() injectCss(css) -const container = document.querySelector('#test-container') - // parse opts var store = configureStore(states[selectedView]) // start app -render( - h('.super-dev-container', [ - - h(Selector, { actions, selectedKey: selectedView, states, store }), - - h('#app-content', { - style: { - height: '500px', - width: '360px', - boxShadow: 'grey 0px 2px 9px', - margin: '20px', - }, - }, [ - h(Root, { - store: store, - }), - ]), - - ] -), container) +startApp() + +function startApp(){ + const body = document.body + const container = document.createElement('div') + container.id = 'test-container' + body.appendChild(container) + + render( + h('.super-dev-container', [ + + h(Selector, { actions, selectedKey: selectedView, states, store }), + + h('#app-content', { + style: { + height: '500px', + width: '360px', + boxShadow: 'grey 0px 2px 9px', + margin: '20px', + }, + }, [ + h(Root, { + store: store, + }), + ]), + + ] + ), container) +} |