From 9cb3a07acad861712f64ce3fc0d1157a32a72381 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Wed, 6 Oct 2010 17:24:58 -0400 Subject: policy and config Population of the policy and entites tabs. DNS and ACI are broken due to PLugin issues Fix for entities without search Added new files to Makefile.am used rolegroup.js file as the start point, renamed to serverconfig.js --- install/static/details.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'install/static/details.js') diff --git a/install/static/details.js b/install/static/details.js index 62c5c5eb..41f3a510 100644 --- a/install/static/details.js +++ b/install/static/details.js @@ -125,14 +125,14 @@ function ipa_details_load(jobj, pkey, on_win, on_fail) details.append('

'+error_thrown.message+'

'); }; - if (!pkey) - return; - + var params = [pkey]; + if (!pkey){ + params = []; + } ipa_cmd( - 'show', [pkey], {all: true}, load_on_win, load_on_fail, obj_name + 'show', params, {all: true}, load_on_win, load_on_fail, obj_name ); } - function ipa_details_update(obj_name, pkey, on_win, on_fail) { function update_on_win(data, text_status, xhr) { -- cgit