From 76e76a09eb7a077449225b0465941bbf2448ce07 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 24 Aug 2013 07:43:05 -0400 Subject: [PATCH] bug #4051 Wrong tabindex when inserting rows --- ChangeLog | 1 + js/tbl_change.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8c091418ce..a44b4d638e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog - bug #4054 query analysis doesn't launch in status monitor + Add pmahomme icon credits (FamFamFam silk icon set) - bug #4064 Table structure statistics "Space usage" caption too small for l10n +- bug #4051 Wrong tabindex when inserting rows 4.0.5.0 (2013-08-04) - bug #3977 Not detected configuration storage diff --git a/js/tbl_change.js b/js/tbl_change.js index a249063b2c..470a8ca4be 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -466,7 +466,7 @@ AJAX.registerOnload('tbl_change.js', function() { // IMO it's not really important to handle the tabindex for // function and Null var tabindex = 0; - $('.textfield') + $('.textfield, .char') .each(function() { tabindex++; $(this).attr('tabindex', tabindex);