1
0
mirror of https://github.com/oupala/apaxy.git synced 2025-08-17 16:10:42 +02:00

fix: remove useless js

Remove some old js code which now seems useless. It aimed to fix links when not adding a / at the end of the URI.

fix #132
This commit is contained in:
oupala
2019-07-18 19:03:26 +02:00
parent 16618c9f11
commit afa2e51970

View File

@@ -1,13 +1,3 @@
// fix links when not adding a / at the end of the URI
var uri = window.location.pathname.substr(1);
if (uri.substring(uri.length - 1) !== '/') {
var indexes = document.getElementsByClassName('indexcolname');
for (let i of indexes) {
var a = i.getElementsByTagName('a')[0];
a.href = '/' + a.getAttribute('href', 2);
}
}
// content filtering, based on "light javascript table filter" by Chris Coyier
// https://codepen.io/chriscoyier/pen/tIuBL - MIT License
(function(document) {