You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dropdowns currently only toggle on click events. I've written a mouseover dropdown directive by copy-pasting the dropdown directive and changing the event name to mouseover (that's the gist; there's some minor complexity around event bubbling). It would be nice if this could be supported directly as an option. It would be used as:
<!-- this works on mouseover -->
<!-- default is click but dropdown can also be specified -->
<a dropdown-toggle='#dropdown1' dropdown-event='mouseover'></a>
<ul id='dropdown1'><li>....</li></ul>
If this feature is desirable in the project, I would be happy to submit a pull request with code, tests and documentation.
The text was updated successfully, but these errors were encountered:
Dropdowns currently only toggle on click events. I've written a mouseover dropdown directive by copy-pasting the dropdown directive and changing the event name to mouseover (that's the gist; there's some minor complexity around event bubbling). It would be nice if this could be supported directly as an option. It would be used as:
If this feature is desirable in the project, I would be happy to submit a pull request with code, tests and documentation.
The text was updated successfully, but these errors were encountered: