summaryrefslogtreecommitdiff
path: root/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/TrustStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/TrustStore.js')
-rw-r--r--qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/TrustStore.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/TrustStore.js b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/TrustStore.js
index 14c51f3276..dfe276cae2 100644
--- a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/TrustStore.js
+++ b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/TrustStore.js
@@ -71,11 +71,17 @@ define(["dojo/dom",
var node = registry.byNode(editTrustStoreButton);
connect.connect(node, "onClick",
function(evt){
- that.dialog(that.keyStoreUpdater.keyStoreData)
+ xhr.get({url: that.url, sync: properties.useSyncGet, handleAs: "json", content: { actuals: true }})
+ .then(function(data)
+ {
+ that.dialog(data[0], that.url);
+ });
});
}});
};
+
+
TrustStore.prototype.close = function() {
updater.remove( this.keyStoreUpdater );
};