mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-08 06:36:33 +02:00
dropdown.js: Use more straightforward phrasing for index lower bound check
[skip sauce] [skip validator]
This commit is contained in:
@@ -250,7 +250,7 @@ const Dropdown = (($) => {
|
|||||||
index++
|
index++
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!~index) {
|
if (index < 0) {
|
||||||
index = 0
|
index = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user