From 20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 9 Nov 2011 18:48:04 -0600 Subject: 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 --- install/ui/details.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'install/ui/details.js') diff --git a/install/ui/details.js b/install/ui/details.js index fd3570e1..440a9b7d 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); -- cgit