1
0
mirror of https://github.com/django/django.git synced 2025-07-04 01:39:20 +00:00

[soc2009/admin-ui] prevent selector-inlines from jumping the page to the top when selecting a different inline

git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/admin-ui@11196 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Zain Memon 2009-07-06 03:49:45 +00:00
parent 6d84761b0c
commit 242e8177bf

View File

@ -107,7 +107,7 @@ $(function() {
$(this).addClass('inline-selected');
var div_to_show = '#' + $(this).find('a').attr('title');
$(div_to_show).fadeIn('normal');
$(div_to_show).show();
return false;
});