aboutsummaryrefslogtreecommitdiffstats
path: root/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaEditForm.js
diff options
context:
space:
mode:
Diffstat (limited to 'gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaEditForm.js')
-rw-r--r--gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaEditForm.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaEditForm.js b/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaEditForm.js
index 06c4402..6c5a753 100644
--- a/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaEditForm.js
+++ b/gui-editors/gui-editor-apex/src/main/webapp/js/ApexContextSchemaEditForm.js
@@ -46,14 +46,14 @@ function editContextSchemaForm_deleteContextSchema(parent, name, version) {
function editContextSchemaForm_viewContextSchema(parent, name, version) {
var requestURL = window.restRootURL + "/ContextSchema/Get?name=" + name + "&version=" + version;
- ajax_getWithKeyInfo(requestURL, "apexContextSchema", function(contextSchema) {
+ ajax_getWithKeyInfo(requestURL, function(contextSchema) {
editContextSchemaForm_activate(parent, "VIEW", contextSchema);
});
}
function editContextSchemaForm_editContextSchema(formParent, name, version) {
var requestURL = window.restRootURL + "/ContextSchema/Get?name=" + name + "&version=" + version;
- ajax_getWithKeyInfo(requestURL, "apexContextSchema", function(contextSchema) {
+ ajax_getWithKeyInfo(requestURL, function(contextSchema) {
editContextSchemaForm_activate(formParent, "EDIT", contextSchema);
});
}