Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edge and Internet Explorer Compatibility #2

Open
whurleywhurley opened this issue Feb 27, 2020 · 0 comments
Open

Edge and Internet Explorer Compatibility #2

whurleywhurley opened this issue Feb 27, 2020 · 0 comments
Labels
bug Something isn't working

Comments

@whurleywhurley
Copy link
Owner

Currently incompatible with IE and Edge. Same issue in master repo:
https://github.com/EA-Pods-Team/pdf-bullets/issues/11

Or we just don't fix it, and just block them.

Possible ways to block:

<body>
    <!--[if IE]>
    <p>Sorry, Internet Explorer is not supported.<p>
    Use <a href="http://firefox.com">Firefox</a> instead.
    <![endif]-->

    <![if !IE]>
    <p>The page content for all other browsers.</p>
    <![endif]>
</body>
<html>
<head>
        <meta http-equiv="refresh" content="1; 
URL=http://www.domain.com/realhomepage.html">
</head>
<body>
<script language="javascript">
<!--
if (navigator.appName == "Microsoft Internet Explorer") {
        document.location = "http://www.domain.com/ie_reject.shtml"; 
} else { 
        document.location = "http://www.domain.com/realhomepage.html";
}
// -->
</script>
</body>
</html>
@whurleywhurley whurleywhurley added the bug Something isn't working label Feb 27, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant