IET-OU / nquire-web-source

Join missions to explore your world. The nQuire-it web source code (front end & Java back end) —
http://www.nquire-it.org
GNU General Public License v3.0
2 stars 2 forks source link

Fix for Internet Explorer 8 redirection #40

Open nfreear opened 8 years ago

nfreear commented 8 years ago

From — static/src/index.html:

<!doctype html><html> …

    <!--[if lte IE 8]>
    <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.nquire-it.org/ie8.htm">
    <![endif]-->

…
</html>

To:

<!doctype html><html> …

    <!--[if lte IE 8]>
    <script> window.location = './ie8.htm'; </script>
    <![endif]-->

…
</html>

[iet:5559787]