summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-13 12:57:52 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-13 12:57:52 +0000
commit5156c3c2cc6d49cf291f8bec208c52ae736eac1a (patch)
tree0d32f7e0c289f816cf563dad2fada47e6ebb1cb7 /roundcubemail/program/js
parent7c13933277de668a9ca0b11009ce16f566d84a8f (diff)
- Added option to display images in messages from known senders (#1484601)
git-svn-id: https://svn.roundcube.net/trunk@1525 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
-rw-r--r--roundcubemail/program/js/app.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 96c9ec39d..667b9fbbf 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -3399,6 +3399,14 @@ function rcube_webmail()
};
+ this.toggle_prefer_html = function(checkbox)
+ {
+ var addrbook_show_images;
+ if (addrbook_show_images = document.getElementById('rcmfd_addrbook_show_images'))
+ addrbook_show_images.disabled = !checkbox.checked;
+ }
+
+
/********************************************************/
/********* remote request methods *********/