From 0874bdf3c2619214203d6ab2fad2282feff46c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BE=D0=BB=D0=BE=D0=B4=D1=8F?= Date: Tue, 14 Mar 2023 18:59:01 +0300 Subject: [PATCH] 12 --- Front/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }