Will this be Chrome browser compatible in future releases?

Thanks,
MTG

CommentFileSizeAuthor
#5 chrome.JPG44.38 KBconnect2krish

Comments

shiva7663’s picture

Good question. Now that it's 2010, it should be a good time to revisit this issue, right?

jmrivero’s picture

Until it gets officialy supported you can coment out the validation and return always true, under your own risk.
File: openwysiwyg.modified.js
Line: 1850.

  /**
 * Determine if the browser version is compatible
 *
 * @return true/false depending on compatiblity of the browser
 */
 isBrowserCompatible: function() {
 // Validate browser and compatiblity
 //if ((navigator.userAgent.indexOf('Safari') != -1 ) || !document.getElementById || !document.designMode){ 
 if (!document.getElementById || !document.designMode){  
  //no designMode (Safari lies)
   return false;
 } 
 return true;
 },
fidokomik’s picture

Assigned: Unassigned » fidokomik
Category: support » bug

Workaround found ;-)

isBrowserCompatible: function() {
// Validate browser and compatiblity
if ((navigator.userAgent.indexOf('Safari') != -1 && navigator.userAgent.indexOf('Chrome') == -1) || !document.getElementById || !document.designMode){
//no designMode (Safari lies)
return false;
}
return true;
},

nerdoc’s picture

I tested fidokomiks patch, it works perfectly (under Chromium 8.0.552.215 (67652) under Ubuntu 10.10).
IMHO you should include that patch into HEAD before you release 6.x-1.0!
Chrome/Chromium is a good browser, and nowadays has not any more the bad Javascript implementation of those days when you excluded it!

connect2krish’s picture

StatusFileSize
new44.38 KB

chrome

Snapshot from Chrome version 23.0 - Windows 7

-Krish
www.krishlogic.net

nathanvv’s picture

Issue summary: View changes

This alert warning has got to be one of the most annoying things I have ever seen. I mean alert boxes, really??!? Thanks jmrivero for the tip