diff options
author | Devaev Maxim <[email protected]> | 2019-04-27 01:58:21 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-04-27 01:58:21 +0300 |
commit | c40f13e2d79c2ed23502e3c49f9b1e8c7d23f1c2 (patch) | |
tree | 0f0e006ebbb8eb0ea7b1e25dab82af908727096f /web/share/js/kvm/atx.js | |
parent | a89612e5ac6ae03089500768bed9ef049ce75c4b (diff) |
url refactoring
Diffstat (limited to 'web/share/js/kvm/atx.js')
-rw-r--r-- | web/share/js/kvm/atx.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/kvm/atx.js b/web/share/js/kvm/atx.js index b0da761e..b718b99c 100644 --- a/web/share/js/kvm/atx.js +++ b/web/share/js/kvm/atx.js @@ -56,7 +56,7 @@ function Atx() { var __clickButton = function(button, confirm_msg) { wm.confirm(confirm_msg).then(function(ok) { if (ok) { - let http = tools.makeRequest("POST", "/kvmd/atx/click?button=" + button, function() { + let http = tools.makeRequest("POST", "/api/atx/click?button=" + button, function() { if (http.readyState === 4) { if (http.status === 409) { wm.error("Performing another ATX operation for other client.<br>Please try again later"); |