mirror of
https://github.com/fablab-nea/wiki.git
synced 2024-11-14 20:52:25 +01:00
11 lines
316 B
JavaScript
11 lines
316 B
JavaScript
|
(() => {
|
||
|
let editLink = document.getElementById("git-repository-button").parentElement
|
||
|
const relativeFile = location
|
||
|
.pathname
|
||
|
.split("/")
|
||
|
.slice(-path_to_root.split("/").length)
|
||
|
.join("/")
|
||
|
.replace(/\.html$/, ".md")
|
||
|
editLink.href = editLink.href + "/edit/master/src/" + relativeFile
|
||
|
})();
|