![]() |
|
|
|||||||
| For more information about the ads and why they're here, please see the FAQ |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hi there, first of all great work. I just updated to 391 and found two small errors.
Bugs 1. Main overview list: The code below gives an error because of the ' symbol in the senders mail address in IE7. I think this has to be escaped. See the ' in mangingHoff's@aacfcu.com after the double f Code:
<td class="from"><a href="mailto:mangingHoff's@aacfcu.com"
onclick="return rcmail.command('compose','mangingHoff's@aacfcu.com',this)"
class="rcmContactAddress" title="mangingHoff's@aacfcu.com">
Shannon Castro</a></td>
3. Main overview list: The preview pane is only about 150px high in IE7, and there is still about 300px available (which is at the moment empty Requests 1. HTML editor: The std mail HTML format is a small font type. Any way to save this also using AJAX when you change? Or set by default? 2. HTML editor: When I hit enter I see two newlines instead of one. 3. HTML editor: Is there a way for a more concise editing buttons list in the editor - and maybe and advanced. It seems very crowded and in my current offline email program I dont even use so many options 4. General remark: There is a box around all the checkboxes. Is this correct - can we alter CSS for the checkbox only? Just some feedback.. hope it helps for the better of roundcube |
|
#2
|
|||
|
|||
|
A little info for you in reference to the bugs you have noticed:
#1 - I thought I had seen a trouble ticket for this at one time, but I can't find it now. You may want to search through the closed trouble tickets and if you can't find one similar to that, open a new ticket. #2 - This has been noticed by a lot of people (myself included) and has an open trouble ticket - http://trac.roundcube.net/trac.cgi/ticket/1484138 #3 - Should be fixed as of SVN revision 406 http://trac.roundcube.net/trac.cgi/changeset/406 - It works for me now. |
|
#3
|
|||
|
|||
|
Hello all,
I've been playing around a bit with the focus on preview iframe and found a solution that works for me! In app.js around line 200 we have: Code:
window.focus() I've replaced it by: Code:
if (this.env.framed && window.parent)
{
window.parent.focus();
}
else
{
window.focus();
}
hope it helps someone Alex |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
| For more information about the ads and why they're here, please see the FAQ |