Spec Runner cant run on IE11

This commit is contained in:
Futago-za Ryuu 2018-09-25 20:29:26 +01:00
parent 14b8b76a79
commit 213c70ced4

View file

@ -4,13 +4,13 @@
<script src="https://unpkg.com/mocha@5.2.0/mocha.js"></script> <script src="https://unpkg.com/mocha@5.2.0/mocha.js"></script>
<script> <script>
mocha.setup( { mocha.setup( { ui: "bdd" } );
ui: "bdd"
} );
</script>
<script src="/js/spec-bundle.js"></script> if ( window.MSInputMethodContext && document.documentMode )
<script> document.getElementById( "mocha" ).innerHTML = "Sorry, IE11 is not supported by the Spec Runner's dependencies.";
mocha.run();
else
document.write( "<script src='/js/spec-bundle.js' onload='mocha.run()'><\/script>" );
</script> </script>