10 lines
276 B
JavaScript
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";
|
|
} |