mirror of https://github.com/shadowfacts/type.git
9 lines
219 B
JavaScript
9 lines
219 B
JavaScript
|
$("#form").submit((event) => {
|
||
|
event.preventDefault();
|
||
|
|
||
|
let repo = $("#repo").val();
|
||
|
let branch = $("#branch").val();
|
||
|
let file = $("#file").val();
|
||
|
window.location.href = `/type.html#${repo}/${branch}/${file}`;
|
||
|
});
|