google-code-export / jzebra

Automatically exported from code.google.com/p/jzebra
1 stars 0 forks source link

deployJava.js does not work with IE11 #192

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Per:
https://forums.oracle.com/thread/2595315

Quote from thread:

As a temporary solution, you can modify deployJava.js adding a condition in 
line 1013

1013: if ((browser.indexOf('msie') != -1) && (browser.indexOf('opera') == -1)) {

new version

1013: if ((browser.indexOf('msie') != -1) && (browser.indexOf('opera') == -1)  
|| (browser.indexOf('trident') != -1)) {

Since IE11 doesn't send anymore MSIE in the useragent string (see previous 
Stefano answer for details)  the Trident string must be checked to identify new 
IE version.

Original issue reported on code.google.com by tres.fin...@gmail.com on 4 Dec 2013 at 8:58

GoogleCodeExporter commented 9 years ago
Oracle has corrected this, but changed the code considerably.  Here's the 
updated version.  Please use this instead.

http://www.java.com/js/deployJava.js

Original comment by tres.fin...@gmail.com on 4 Dec 2013 at 9:05

GoogleCodeExporter commented 9 years ago
Fixed in 1.8.0.

Original comment by tres.fin...@gmail.com on 5 Dec 2013 at 3:36