diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-22 13:32:44 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-22 13:32:44 +0000 |
| commit | c3d4577a3f29b77586e1b515e221f0d8e37757f4 (patch) | |
| tree | 4d19930c97c8500d8e1ef662df14c00dbe3c875d /roundcubemail/program/js | |
| parent | 035d1888fcf832d20ea26ca62b0a370624f0ba06 (diff) | |
- Fix action when toggling prefer_html option state
git-svn-id: https://svn.roundcube.net/trunk@5465 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 4b4187d91..1be200933 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -5587,7 +5587,7 @@ function rcube_webmail() this.toggle_prefer_html = function(checkbox) { - $('#rcmfd_addrbook_show_images').prop('disabled', !checkbox.checked); + $('#rcmfd_show_images').prop('disabled', !checkbox.checked).val(0); }; this.toggle_preview_pane = function(checkbox) |
