Skip to content

Commit

Permalink
Fix focus issue in IE when selecting message row (#1488620)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Sep 4, 2012
1 parent 2c0d038 commit e263994
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================

- Fix focus issue in IE when selecting message row (#1488620)
- Remove (too big) min-width on mail screen
- Add full headers view in message preview window (#1488538)
- Fix message display page issues - unified with message preview (#1488590, #1488642)
Expand Down
4 changes: 2 additions & 2 deletions program/js/list.js
Expand Up @@ -231,8 +231,8 @@ focus: function(e)
}
}

// Un-focus already focused elements
$(document.activeElement).blur();
// Un-focus already focused elements (#1487123, #1487316, #1488600, #1488620)
$(':focus:not(body)').blur();
$('iframe').each(function() { this.blur(); });

if (e || (e = window.event))
Expand Down

1 comment on commit e263994

@marigonda
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just to inform....
I unpacked, set up and started using RC 0.8.1 (latest download). This problem persists on it!
I had to download list.js to fix it!
Thanks
Joao

And last.... AJAX SUCKS... any script running on clients will always suck

Please sign in to comment.