mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-20 01:22:59 +08:00
9 lines
207 B
JavaScript
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';
|
|
}
|
|
}
|
|
})();
|