From: Rober c. <rob...@gm...> - 2010-03-01 16:52:08
|
Hi John, I have had the same problem. I have changed two files: MapBuilder.js and Config.js. In MapBuilder.js: Replace two lines: (75) this.checkScriptsLoaded=function() { (76) //if (document.readyState!=null){ if ((document.readyState)&&(navigator.userAgent.toLowerCase().indexOf("ie") > -1)){ (135) case MB_LOAD_CONFIG: (136) //if(document.readyState){ (137) if ((document.readyState)&&(navigator.userAgent.toLowerCase().indexOf("ie") > -1)){ In Config.js: To the final of the file: /** * Initialise the global config object for Mozilla browsers. */ if (navigator.userAgent.toLowerCase().indexOf("ie") > -1){ }else{ mapbuilder.setLoadState(MB_LOAD_CONFIG); config=new Config(mbConfigUrl); config[config.id] = config; config.loadConfigScripts(); } Bye. -- View this message in context: http://n2.nabble.com/The-new-Firefox-3-6-does-not-work-with-mapbuilder-Any-suggestions-tp4485771p4655226.html Sent from the MapBuilder Devel mailing list archive at Nabble.com. |