diff --git a/dev/index.html b/dev/index.html
index 0880f68..10bcedd 100644
--- a/dev/index.html
+++ b/dev/index.html
@@ -121,10 +121,12 @@
Tests
document.getElementById("quicklaunch").addEventListener("click", function(e){
e.preventDefault();
let links = document.querySelectorAll("#examples li a");
- links.forEach(function(link){
- window.open(link.href, "_blank");
- });
+ //Can't use forEach because IE11 doesn't support it
+ for(let i=0; i