diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-28 10:58:21 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-28 10:58:21 +0200 |
commit | de6e22573ee3128b3a04deda70ef4181b8f4c721 (patch) | |
tree | e00ce61a7a76da54d351c22725e26a0952fda0a3 | |
parent | d0f616c6e04560a2f6a90b39b3d1d4391b327c74 (diff) |
Fix PDF support detection for Firefox PDF.js (#1488972)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/app.js | 9 | ||||
-rw-r--r-- | program/resources/blank.pdf | bin | 0 -> 921 bytes |
3 files changed, 10 insertions, 0 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix PDF support detection for Firefox PDF.js (#1488972) - Fix messages list focus issue in Internet Explorer (#1489058) - Add db_prefix configuration option in place of db_table_*/db_sequence_* options - Make possible to use db_prefix for schema initialization in Installer (#1489067) diff --git a/program/js/app.js b/program/js/app.js index 5d7e28640..58810c24a 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6721,6 +6721,15 @@ function rcube_webmail() return 1; } + // this will detect any pdf plugin including PDF.js in Firefox + var obj = document.createElement('OBJECT'); + obj.onload = function() { rcmail.env.browser_capabilities.pdf = 1; }; + obj.onerror = function() { rcmail.env.browser_capabilities.pdf = 0; }; + obj.style.display = 'none'; + obj.type = 'application/pdf'; + obj.data = 'program/resources/blank.pdf'; + document.body.appendChild(obj); + return 0; }; diff --git a/program/resources/blank.pdf b/program/resources/blank.pdf Binary files differnew file mode 100644 index 000000000..7bf83e390 --- /dev/null +++ b/program/resources/blank.pdf |