icecoder / ICEcoder

Browser code editor awesomeness
http://icecoder.net
Other
1.41k stars 348 forks source link

What library do you use for editor tabs and rearranging them? #1019

Open abalter opened 1 year ago

abalter commented 1 year ago

What library do you use for editor tabs and rearranging them? Can you point me to the place in the code that captures the drag events?

mattpass commented 1 year ago

No library, wrote my own thing. You can find tabDragStart, tabDragMove and tabDragEnd in icecoder.js between lines 4696 and 4792.

100 tabs are generated on page load, ready to use. It's quite a long line, but the tabs incl the mouse events are here: https://github.com/icecoder/ICEcoder/blob/7001178b798d4db55b5396a03a22a39aa6f4000b/index.php#L311