How to auto disable compatibility mode in Internet Explorer

Usage FAQ

On this page

Still need help?

The Atlassian Community is here for you.

Ask the community

The content on this page relates to platforms which are not supported by JIRA. Consequently, Atlassian cannot guarantee providing any support for it. Please be aware that this material is provided for your information only and using it is done so at your own risk.

The following workarounds were provided by other users who facing the same problem. Please always generate a backup of the file before any customization to ensure a revert is possible.

 

JIRA 4.4.x:

  1. Open the file <JIRA_INSTALL>/atlassian-jira/include/decorators/header.jsp and <JIRA_INSTALL>/atlassian-jira/include/decorators/header-deprecated.jsp
  2. Make a backup of header.jsp and header-deprecated.jsp
  3. In the head tag of both files, add in the meta tag code from:

    <head>     
    	...
    </head> 

    to:

    <head>
    	<meta http-equiv="X-UA-Compatible" content="IE=7,IE=8,IE=9" />
    	...     
    </head> 
  4. Restart JIRA

 

JIRA 6.x:

  1. Open the file <JIRA_INSTALL>/atlassian-jira/decorators/general.jsp
  2. Make a backup of general.jsp
  3. In the head tag, change the following code from:

    <head>     
    	<script type="text/javascript">
            if (!window.performance) {
                window.mpPerformance = {};
                window.mpPerformance.responseStart = new Date().getTime();
            }
        </script>
        <%@ include file="/includes/decorators/aui-layout/head-common.jsp" %>
        <%@ include file="/includes/decorators/aui-layout/head-resources.jsp" %>
    </head> 

    to:

    <head>     
    	<%@ include file="/includes/decorators/aui-layout/head-common.jsp" %>
        <%@ include file="/includes/decorators/aui-layout/head-resources.jsp" %>
    	<script type="text/javascript">
            if (!window.performance) {
                window.mpPerformance = {};
                window.mpPerformance.responseStart = new Date().getTime();
            }
        </script> 
    </head> 
  4. Restart JIRA

 

 

Last modified on Aug 9, 2013

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.