|
|
|
@ -23,7 +23,7 @@ const css = csjs` |
|
|
|
|
export default class PanelsResize { |
|
|
|
|
constructor (panel) { |
|
|
|
|
this.panel = panel |
|
|
|
|
let self = this; |
|
|
|
|
let self = this |
|
|
|
|
const string = panel.style.minWidth |
|
|
|
|
this.minWidth = string.length > 2 ? parseInt(string.substring(0, string.length - 2)) : 0 |
|
|
|
|
window.addEventListener('resize', function (event) { |
|
|
|
@ -76,7 +76,7 @@ export default class PanelsResize { |
|
|
|
|
setPosition (event) { |
|
|
|
|
let panelWidth = this.calculatePanelWidth(event) |
|
|
|
|
// close the panel if the width is less than a minWidth
|
|
|
|
|
if (panelWidth > this.minWidth - 10 || this.panel.style.display == 'none') { |
|
|
|
|
if (panelWidth > this.minWidth - 10 || this.panel.style.display === 'none') { |
|
|
|
|
this.panel.style.width = panelWidth + 'px' |
|
|
|
|
this.showPanel() |
|
|
|
|
} else this.hidePanel() |
|
|
|
|