diff --git a/ui (gen4)/experiments/browse-dialog.html b/ui (gen4)/experiments/browse-dialog.html index ed813c3f..93cfe2f4 100755 --- a/ui (gen4)/experiments/browse-dialog.html +++ b/ui (gen4)/experiments/browse-dialog.html @@ -159,7 +159,10 @@ function make(title){ var browser = $('
') .addClass('browse') // make thie widget focusable... - .attr('tabindex', -1) + // NOTE: tabindex 0 means automatic tab indexing and -1 means + // focusable bot not tabable... + //.attr('tabindex', -1) + .attr('tabindex', 0) // focus the widget if something inside is clicked... .click(function(){ $(this).focus()