Will this be Chrome browser compatible in future releases?
Thanks,
MTG
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | chrome.JPG | 44.38 KB | connect2krish |
Will this be Chrome browser compatible in future releases?
Thanks,
MTG
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | chrome.JPG | 44.38 KB | connect2krish |
Comments
Comment #1
shiva7663 commentedGood question. Now that it's 2010, it should be a good time to revisit this issue, right?
Comment #2
jmrivero commentedUntil it gets officialy supported you can coment out the validation and return always true, under your own risk.
File: openwysiwyg.modified.js
Line: 1850.
Comment #3
fidokomik commentedWorkaround 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;
},
Comment #4
nerdoc commentedI 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!
Comment #5
connect2krish commentedSnapshot from Chrome version 23.0 - Windows 7
-Krish
www.krishlogic.net
Comment #6
nathanvv commentedThis 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