input instead of :checkbox Closes #3408.

This commit is contained in:
Mike Jolley 2013-06-28 11:22:12 +01:00
parent 06bf190599
commit 400fd1538b
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ jQuery( function($){
if ( !$firstChecked.length )
return;
var pos_first = $list.find(':checkbox').position().top;
var pos_first = $list.find('input').position().top;
var pos_checked = $firstChecked.position().top;
$list.closest('.tabs-panel').scrollTop(pos_checked - pos_first + 5);

File diff suppressed because one or more lines are too long