From f0577622a9561413b15ae65895143aa27643d0e6 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Mon, 21 Feb 2011 17:28:06 -0500 Subject: search filter focus afdter a search loads, focus moved to the search filter text box, tyhe most likely thing that the user will want to change on the page. https://fedorahosted.org/freeipa/ticket/983 --- install/ui/details.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'install/ui/details.js') diff --git a/install/ui/details.js b/install/ui/details.js index f579fb61..a2ad0896 100644 --- a/install/ui/details.js +++ b/install/ui/details.js @@ -571,7 +571,10 @@ IPA.button = function(spec) { 'class': 'ui-state-default ui-corner-all' }); - if (spec.click) button.click(spec.click); + if (spec.click) { + button.click(spec.click); + } + if (spec['class']) button.addClass(spec['class']); if (spec.icon) { -- cgit