ahuth / preview-tabs

Sublime-style preview tabs for Atom
MIT License
11 stars 2 forks source link

Cleanup tab drop event #9

Closed ahuth closed 9 years ago

ahuth commented 9 years ago

Will merge this if atom/tabs PR #89 goes through

Currently, the tab-bar-view stops propagation of its drop event. It's tricky for us to bind to that event, because when our PreviewTabsPaneController is instantiated, the tab-bar may not have rendered, yet. This forces us to delay binding to the event.

Should the PR go through in atom/tabs, we can bind to the drop event normally, greatly simplifying the PaneController and making it easier to test.