We have noticed with the latest versions of Confluence and JIRA in our company the following:
I would like to know what the best option could be to get a similar behavior for Confluence. Especially the following questions are here relevant:
As background: our company has (for the next 6 months) set IE8 as default browser, and a lot of users experience problems they cannot solve on their own.
Here are the screenshots that show the difference.
IE8-confluence.png
Confluence screenshot
IE8-jira.png
JIRA screenshot
Hi,
We have run into the same issue and what I did was just send out an alert on every page to the user if they are using IE8 or lower. We have a custom theme so I added the javascript code there but you can also add it to the custom html section in the admin area. We also have users in different countries so I also check to see what language they have their browser set to and display the alert in the appropriate language.
Here is a link to the browser detection code I found and am using. You may just have to customize it to your needs but it works well: https://gist.github.com/nardev/4093811
Thank's for the hint, but it is only a part of the solution. I need additionally (and will add that to the question): where to add the code, how to add it, what to display.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can help you with the where to add it and how to add it part, but what to display is up to you. First off you have to be a confluence admin to do this since you need permission to the admin area of confluence. 1) Click on the gear in the top right and select "General configuration" from the drop down 2) Scroll down until you see "Custom HTML" on the left side of the page under LOOK AND FEEL heading 3)Click on "Custom HTML" which should bring you to a page with three text areas 4)Click "Edit" at the bottom 5) Enter the following code in the text area labeled "At the end of the HEAD" (first textarea box on page) <script type="text/javascript"> var ie = (function(){ var undef, v = 3, div = document.createElement('div'), all = div.getElementsByTagName('i'); while ( div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->', all[0] ); return v > 4 ? v : undef; }()); if(ie < 9){ alert("This site only supports Internet Explorer versions 9 and up. ADD MORE TEXT HERE IF YOU LIKE......"); } </script> 6) Edit the alert message to whatever you like Let me know if that works for you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.