Browse Source

Merge pull request #819 from JuanTincho/Toolbar-position-resizing-window Fixes #810

Added resize event to the toggleSelectComponent function.
pull/856/head^2
Artur Arseniev 8 years ago
committed by GitHub
parent
commit
5c0aed9aec
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/commands/view/SelectComponent.js

1
src/commands/view/SelectComponent.js

@ -54,6 +54,7 @@ module.exports = {
methods[method](body, 'click', this.onClick);
methods[method](win, 'scroll', this.onFrameScroll);
methods[method](win, 'keydown', this.onKeyPress);
methods[method](win, 'resize', this.onFrameScroll);
em[method]('change:selectedComponent', this.onSelect, this);
},

Loading…
Cancel
Save