Remove examples/index.js (refs #67)

This commit is contained in:
Éric Lemoine
2012-10-21 21:24:15 +02:00
parent 02c3acbc35
commit 0ae3f8806e

View File

@@ -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;
}
})();