summaryrefslogtreecommitdiffstats
path: root/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexAjax.js
diff options
context:
space:
mode:
Diffstat (limited to 'gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexAjax.js')
-rw-r--r--gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexAjax.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexAjax.js b/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexAjax.js
index 2a75b72..79a4ac8 100644
--- a/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexAjax.js
+++ b/gui-editors/gui-editor-apex/src/main/resources/webapp/js/ApexAjax.js
@@ -19,6 +19,11 @@
* ============LICENSE_END=========================================================
*/
+const {
+ pageControl_restError, pageControl_status,
+ pageControl_successStatus
+} = require("./ApexPageControl");
+
function ajax_get(requestURL, callback) {
$.ajax({
type : 'GET',
@@ -36,7 +41,7 @@ function ajax_get(requestURL, callback) {
function ajax_getWithKeyInfo(requestURL, objectType, callback, keyNam) {
let keyName = keyNam || "key";
- let keyInfoURL = restRootURL + "/KeyInformation/Get?name=&version=";
+ let keyInfoURL = window.restRootURL + "/KeyInformation/Get?name=&version=";
ajax_get(keyInfoURL, function(dataKeyInfos) {
ajax_get(requestURL, function(data) {
var keyInfos = [];
@@ -122,4 +127,4 @@ function ajax_delete(requestURL, callback) {
});
}
-module.exports = {ajax_get, ajax_delete, ajax_post, ajax_put, ajax_getOKOrFail, ajax_getWithKeyInfo}; \ No newline at end of file
+export {ajax_get, ajax_delete, ajax_post, ajax_put, ajax_getOKOrFail, ajax_getWithKeyInfo}; \ No newline at end of file