summaryrefslogtreecommitdiffstats
path: root/install/ui/host.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-11-09 18:48:04 -0600
committerAdam Young <ayoung@redhat.com>2011-11-14 16:47:10 -0500
commit20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71 (patch)
tree1b55c708fbb6cdee93f9e194586a8dbe9633ff3d /install/ui/host.js
parentd6d24be28953f2ec3cf1f2400619fd61459cf45f (diff)
downloadfreeipa-20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71.tar.gz
freeipa-20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71.tar.xz
freeipa-20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71.zip
Removed develop.js.
The develop.js is no longer necessary because the code in it has been merged into the main code. An empty extension.js has been added to provide a place for UI customization. Ticket #2099
Diffstat (limited to 'install/ui/host.js')
-rw-r--r--install/ui/host.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/install/ui/host.js b/install/ui/host.js
index 857f85434..ab33892c6 100644
--- a/install/ui/host.js
+++ b/install/ui/host.js
@@ -43,6 +43,7 @@ IPA.host.entity = function(spec) {
]
}).
details_facet({
+ factory: IPA.host.details_facet,
sections: [
{
name: 'details',
@@ -176,6 +177,17 @@ IPA.host.entity = function(spec) {
return that;
};
+IPA.host.details_facet = function(spec) {
+
+ var that = IPA.details_facet(spec);
+
+ that.get_refresh_command_name = function() {
+ return that.entity.name+'_show_'+that.pkey;
+ };
+
+ return that;
+};
+
IPA.host_fqdn_section = function(spec) {
spec = spec || {};