﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
19598	Bug in inlines.js	rj@…	nobody	"I just noticed a small bug in inlines.js. In the part where the ""addButton"" is included, the following check is used:
{{{
if ($this.attr(""tagName"") == ""TR"") {
}}}
This check doesn't work as expected however. The attr-method reads an attribute. ""tagName"" isn't an attribute. This check should be:
{{{
if ($this.is(""tr"")) {
}}}

Due to this bug, the ""Add another ..."" link gets positioned weirdly when using a TabularInline."	Bug	closed	contrib.admin	1.4	Normal	fixed	javascript,inlines.js		Accepted	0	0	0	0	1	1
