4
0
mirror of https://github.com/hodgef/simple-keyboard.git synced 2025-05-01 10:49:34 +08:00
Francisco Hodge 2e3ca5716b Docs update
2018-10-24 18:18:24 -04:00

9 lines
207 B
JavaScript

(function(){
if (location.protocol === 'file:') {
var elms = document.querySelectorAll('a[href="./"]');
for (var i = 0; i < elms.length; i++) {
elms[i].href = './index.html';
}
}
})();