Well, Firefox's default behavior is to open a new window or tab when shift or ctrl is pressed while left-clicking on a link. *However* this behavior should be disabled in rc with this code starting on line 261 of app.js:
this.click_on_list = function(e) { if (!e) e = window.event;
this.in_message_list = true;
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation();
};
I can test it on Firefox 1.5.0.1 on Win 2000 tonight to see if it acts differently than it does on XP.
-Charles
Michele Baldessari wrote:
- Charles McNulty (charles@charlesmcnulty.com) wrote:
I'm not experiencing this on Firefox 1.5.0.1 on XP. Can anyone else confirm that this is an issue for Firefox 1.0.7 generally? Firefox on all linux? All browsers on linux?
Michele, could you nail this down a little more for me please?
If you can tie it definitely to an option, browser or OS, I could probably fix it.Hi Charles,
I can reproduce with the following:
- Epiphany on linux (1.8.2)
- Firefox 1.5.0.1 on Windows 2000
- Firefox 1.5.0.1 on Linux
since I don't think I have any special settings on either Firefox or Roundcube, I wonder if I am really the only one who stumbled into this.
hth, Michele
On Tue, 14 Feb 2006 21:17:15 +0100, Michele Baldessari michele-lists@pupazzo.org wrote:
Hi there,
(I searched for similar issues in the archives and found nothing matching, so here we go..)
I was giving Roundcube (anonymous CVS from today) a spin and accidentally noticed the behaviour specified in the subject.
If you left-click on the Inbox folder while pressing either the Ctrl or the Shift key a new window opens up (well, depending on the browser configuration) and the session becomes expired.
This is on a clean, updated Debian Sarge system on today's anonymous cvs (server), while using Firefox 1.0.7 (client).
hth, Michele