diff options
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 32ab69f2e..e487a6052 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6384,6 +6384,9 @@ function rcube_webmail() if (this.env.browser_capabilities.pdf === undefined) this.env.browser_capabilities.pdf = this.pdf_support_check(); + if (this.env.browser_capabilities.flash === undefined) + this.env.browser_capabilities.flash = this.flash_support_check(); + if (this.env.browser_capabilities.tif === undefined) this.tif_support_check(); }; @@ -6447,6 +6450,24 @@ function rcube_webmail() return 0; }; + this.flash_support_check = function() + { + var plugin = navigator.mimeTypes ? navigator.mimeTypes["application/x-shockwave-flash"] : {}; + + if (plugin && plugin.enabledPlugin) + return 1; + + if (window.ActiveXObject) { + try { + if (axObj = new ActiveXObject("ShockwaveFlash.ShockwaveFlash")) + return 1; + } + catch (e) {} + } + + return 0; + }; + } // end object rcube_webmail |