Files
release11-tools/Frontend/assets/scripts/dyn_host.js
2023-05-09 13:49:56 +02:00

10 lines
276 B
JavaScript

$(document).ready( function() {
document.getElementById("rest-mock").href =
window.location.protocol + "//" + window.location.hostname + ":8097";
});
function getMockHost() {
return window.location.protocol + "//" + window.location.hostname + ":8097";
}