ChiliProject is not maintained anymore. Please be advised that there will be no more updates.
We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.
Cmd+Click on Projects and More menus doesn't work (Bug #773)
Description
Cmd+Click (supposed to open the link in a new tab) on the top menus doesn't work. It seems to swallow the click as it does exactly nothing.
Firefox 8.0.1. on OSX 10.6.8
Associated revisions
Fixes #773: Changeset block is smashing the update frame on issues/show.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1193 e93f8b46-1217-0410-a6f0-8f06a7374b81
History
Updated by E M at 2012-02-04 09:16 pm
- not work with FF ( 9 )
- work with Chrome / Safari
Looking at Firequery, there is no event bound to that a, which and not even to the root element. I expect this to be a CSS menu then? Very odd indeed then.
Updated by Holger Just at 2012-02-06 02:00 pm
This is not a release blocker. Thus I'm postponing this.
- Target version deleted (
3.0.0) - Affected version set to 3.0.0
Updated by Andrew Smith at 2012-05-22 05:26 am
This is annoying to me as well. The event is caught in the application.js file around line 563
$('#account-nav .drop-down').live('click', function(event) { var menuItem = $(this); toggleTopMenu(menuItem); if (menuItem.hasClass('open')) { handleClickEventOnPageToCloseOpenMenu(menuItem); } return false; });
Talk about a CSS menu has been mentioned in #764 . Updating the JS could also fix this as well (a simple check to see if ctrl/shift/cmd is being held at the same time as the click).