summaryrefslogtreecommitdiffstats
path: root/install/ui/details.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/details.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/details.js')
-rw-r--r--install/ui/details.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/install/ui/details.js b/install/ui/details.js
index fd3570e1c..440a9b7d9 100644
--- a/install/ui/details.js
+++ b/install/ui/details.js
@@ -800,20 +800,21 @@ IPA.details_facet = function(spec) {
command.execute();
};
+ that.get_refresh_command_name = function() {
+ return that.entity.name+'_show';
+ };
+
that.refresh = function() {
that.pkey = IPA.nav.get_state(that.entity.name+'-pkey');
var command = IPA.command({
+ name: that.get_refresh_command_name(),
entity: that.entity.name,
method: 'show',
options: { all: true, rights: true }
});
- if (IPA.details_refresh_devel_hook) {
- IPA.details_refresh_devel_hook(that.entity.name, command, that.pkey);
- }
-
if (that.pkey) {
command.args = that.get_primary_key(true);