yjs/docs/script/patch-for-local.js
2018-04-27 18:45:01 +02: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';
}
}
})();