function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
jls_74_txjls_74_tx 

Issues with Development Mode Footer?

Is anyone having an issue with the Development Mode Footer in Chrome? As of last night I cannot get the toolbar or code to show in Chrome. It works in IE (I haven't tried Firefox). Premium support hasn't been able to provide an answer. I have the latest Chrome update installed, but it hasn't installed a new version lately.

Chrome Developer Tools says: 
edit_area_loader.js?sfdcVersion=1366068272000:664 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.

When I inspect the element I receive:

get_template : function(){
        if(this.template=="")
        {
            var xhr_object = null; 
            if(window.XMLHttpRequest) // Firefox 
                xhr_object = new XMLHttpRequest(); 
            else if(window.ActiveXObject) // Internet Explorer 
                xhr_object = new ActiveXObject("Microsoft.XMLHTTP"); 
            else { // XMLHttpRequest not supported
                alert("XMLHTTPRequest not supported. EditArea not loaded"); 
                return; 
            } 
             
            xhr_object.open("GET", this.baseURL+"template.html", false); 
            xhr_object.send(null); 
            if(xhr_object.readyState == 4) 
                this.template=xhr_object.responseText;
            else
                this.has_error();
        }
    },

I can actually see my code in the top .25cm of the footer window but I cannot get it to display correctly (re-open/close/developer mode on/developer mode off) I've tried everything.

Anyone have a workaround?