diff --git a/Front/script.js b/Front/script.js index 7db067c..ed6f8ca 100644 --- a/Front/script.js +++ b/Front/script.js @@ -5,7 +5,7 @@ let typeE = document.getElementById("selType"); let opE = document.getElementById("selOp"); let resultInput = document.getElementById("res"); function aba(cmd,type,wd,wd2){ -fetch(`http://192.168.56.101:8080/${cmd}${type}?x=${wd}&y=${wd2}`) +fetch(`http://192.168.56.102:8080/${cmd}${type}?x=${wd}&y=${wd2}`) .then(response => response.text()) .then(res => resultInput.value = res); }