fix resizing

pull/1/head
yann300 6 years ago
parent a76cb8e1fb
commit 35a827f226
  1. 2
      src/app.js

@ -453,7 +453,7 @@ Please make a backup of your contracts and start using http://remix.ethereum.org
swapPanelApi.event.on('toggle', () => {
this._components.resizeFeature.panel1.clientWidth !== 0 ? this._components.resizeFeature.minimize() : this._components.resizeFeature.maximise()
})
swapPanelApi.event.on('showing', () => { this._components.resizeFeature.maximise() })
swapPanelApi.event.on('showing', () => { this._components.resizeFeature.panel1.clientWidth === 0 ? this._components.resizeFeature.maximise() : '' })
self._components.editorpanel.init()
self._components.fileManager.init()

Loading…
Cancel
Save