babyman / quick-tabs-chrome-extension

A quick tab list and switch plugin inspired by the intelliJ IDEA java IDE
BSD 3-Clause "New" or "Revised" License
984 stars 172 forks source link

Tab order update delay of 0 ms is not respected #341

Closed legate closed 3 years ago

legate commented 3 years ago

Tab order update delay is parsed with parseInt(s, 10) || 1500 which returns 1500 if s is 0, because JavaScript ¯\_(ツ)_/¯

This fixes it.

babyman commented 3 years ago

Thanks for taking the time to submit this, I changed the implementation a little because "" would return have returned NaN.