summaryrefslogtreecommitdiffstats
path: root/client/client-editor/src
diff options
context:
space:
mode:
Diffstat (limited to 'client/client-editor/src')
-rw-r--r--client/client-editor/src/main/resources/webapp/js/ApexPageControl.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/client-editor/src/main/resources/webapp/js/ApexPageControl.js b/client/client-editor/src/main/resources/webapp/js/ApexPageControl.js
index 71c2614fb..d81b0fe0d 100644
--- a/client/client-editor/src/main/resources/webapp/js/ApexPageControl.js
+++ b/client/client-editor/src/main/resources/webapp/js/ApexPageControl.js
@@ -183,7 +183,7 @@ function pageControl_successStatus(data) {
$('#statusString').html(data.result);
$("#statusMessageTable").empty();
- if (data.OK) {
+ if (data.ok) {
$('#statusString').css("color", "green");
$('#ebInlineMessage-iconHolder-icon').attr("class", "ebIcon ebIcon_big ebIcon_tick");
} else {
@@ -208,7 +208,7 @@ function pageControl_status(data) {
$('#statusString').html(data.result);
$("#statusMessageTable").empty();
- if (data.OK) {
+ if (data.ok) {
$('#statusString').css("color", "green");
$('#ebInlineMessage-iconHolder-icon').attr("class", "ebIcon ebIcon_big ebIcon_tick");
} else {