Closed legate closed 3 years ago
Tab order update delay is parsed with parseInt(s, 10) || 1500 which returns 1500 if s is 0, because JavaScript ¯\_(ツ)_/¯
parseInt(s, 10) || 1500
s
This fixes it.
Thanks for taking the time to submit this, I changed the implementation a little because "" would return have returned NaN.
Tab order update delay is parsed with
parseInt(s, 10) || 1500
which returns 1500 ifs
is 0, because JavaScript ¯\_(ツ)_/¯This fixes it.