In Drupal 7.20 and 7.21 with Tweme enabled, you can no longer middle click on any links in Firefox (20.0). Still works in IE and Chrome though. If I disable javascript, the middle click links work, so the problem is there (somewhere).

Comments

neRok’s picture

Priority: Major » Normal
Status: Active » Postponed

Search google, found the problem is actually between Bootstrap v2.3.1 and v2.3.2 with Firefox. Problem does not exist with Bootstrap v2.3.0.

Here is the Bootstrap issue: https://github.com/twitter/bootstrap/issues/7118
And a single-line 'patch' that fixes it: https://github.com/twitter/bootstrap/pull/7211

If anyone wants to fix this issue before a new bootstrap is released (like me), open bootstrap.js and scroll to line 794 and change the code...
FROM .on('click.dropdown-menu', function (e) { e.stopPropagation() })
TO     .on('click.dropdown.data-api', '.dropdown-menu', function (e) { e.stopPropagation() })

You should also do a find-replace on bootstrap.min.js if you use that version.

anydigital’s picture

Thanks for the report neRok. Looks like this bug is not reproducible with the latest version of Bootstrap (2.3.2). Isn't it?