MitocGroup/run-jst

View on GitHub
docs/api/script/patch-for-local.js

Summary

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