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
When adding classes after float-left/right the regex in foundation.dropdown.js#L74 will no longer read the horizontal position correcly. The matched string will be everything till the last space, see this RegexPal example
Testing for float-left and float-right explicitly or writing the regex like /float-(\S+)\s/ should fix this.
The text was updated successfully, but these errors were encountered:
When adding classes after float-left/right the regex in foundation.dropdown.js#L74 will no longer read the horizontal position correcly. The matched string will be everything till the last space, see this RegexPal example
Testing for float-left and float-right explicitly or writing the regex like
/float-(\S+)\s/
should fix this.The text was updated successfully, but these errors were encountered: