From c15b47d5b52dc1a48ea82881335d616e7b1e285e Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 13 Jun 2011 18:12:11 -0500 Subject: Fixed tab navigation. The buttons were previously skipped during tab navigation because they do not have an href attribute. The IPA.button has been fixed to always provide an href attribute. Ticket #983 --- install/ui/details.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'install/ui/details.js') diff --git a/install/ui/details.js b/install/ui/details.js index 7fa72eff..f5a3e4d8 100644 --- a/install/ui/details.js +++ b/install/ui/details.js @@ -673,6 +673,8 @@ IPA.button = function(spec) { var button = $('', { id: spec.id, + name: spec.name, + href: spec.href || '#' + (spec.name || 'button'), html: spec.label, title: spec.title || spec.label, 'class': 'ui-state-default ui-corner-all', -- cgit