Reputation: 1487
Can someone please explain what this line of jquery means in tooltip(used by popover)
inside = /in/.test(placement)
^^^^^^^^^
What does this mean/for?
Upvotes: 1
Views: 515
Reputation: 11467
That's a regex test, which checks to see if the string "in" is in placement
. It seems a bit wasteful here, though...
Upvotes: 2