mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-02-01 02:53:07 +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';
|
|
}
|
|
}
|
|
})();
|