Dropdown should ignore clicks on <select>s (and <label>s?) within the dropdown
Created by: yksht
Hello. I tried to use dropdown plugin like a special area for options (some radio buttons) and found a strange behavior. You can see it here (try to click on select tag or labels for radio buttons): http://jsbin.com/jorota/edit?html,output
There is a simple check in bootstrap.js in this plugin
/input|textarea/i.test(e.target.tagName)
this behavior can be fixed by adding new tags through the '|'
/input|textarea|select|label/i.test(e.target.tagName)
is it possible to add this fix to release? or this is not a type of regular using of this plugin? but in this case: why there is 'textarea' in condition? :)
thank you :) and sorry for my bad english