Skip to content

Commit

Permalink
Fix bug where signature couldn't be added above the quote in Firefox …
Browse files Browse the repository at this point in the history
…51 (#5628)
  • Loading branch information
alecpl committed Feb 1, 2017
1 parent 9e75845 commit a336026
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ CHANGELOG Roundcube Webmail
- Fix PHP error on update of a contact with multiple email addresses when using PHP 7.1 (#5587)
- Fix bug where mail content frame couldn't be reset in some corner cases (#5608)
- Fix bug where some classic skin images were not displayed in IE/Edge (#5614)
- Fix bug where signature couldn't be added above the quote in Firefox 51 (#5628)

RELEASE 1.2.3
-------------
Expand Down
2 changes: 2 additions & 0 deletions program/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4001,6 +4001,8 @@ function rcube_webmail()
// add signature according to selected identity
// if we have HTML editor, signature is added in a callback
if (input_from.prop('type') == 'select-one') {
// for some reason the caret initially is not at pos=0 in Firefox 51 (#5628)
this.set_caret_pos(input_message, 0);
this.change_identity(input_from[0]);
}

Expand Down

0 comments on commit a336026

Please sign in to comment.