From 0ae3f8806ecb620eb20504e459c6b4da0648e9d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Sun, 21 Oct 2012 21:24:15 +0200 Subject: [PATCH] Remove examples/index.js (refs #67) --- examples/index.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 examples/index.js diff --git a/examples/index.js b/examples/index.js deleted file mode 100644 index 21bc8fa4f4..0000000000 --- a/examples/index.js +++ /dev/null @@ -1,16 +0,0 @@ - - -/** - * Loader to append the query string to every A element in the document. - * - * This is so that (for example) visiting - * /examples/index.html?mode=RAW&Debug=true - * will cause all links to automatically include the ?mode=RAW&Debug=true. - */ -(function() { - var as = document.getElementsByTagName('a'); - var i, n = as.length; - for (i = 0; i < n; ++i) { - as[i].href += window.location.search; - } -})();