simple-keyboard/docs/script/patch-for-local.js

9 lines
207 B
JavaScript
Raw Normal View History

2018-10-25 06:18:24 +08:00
(function(){
if (location.protocol === 'file:') {
var elms = document.querySelectorAll('a[href="./"]');
for (var i = 0; i < elms.length; i++) {
elms[i].href = './index.html';
}
}
})();