Fix up whitespace and a couple of glitches.

This commit is contained in:
Yehuda Katz 2009-12-09 21:15:49 -08:00
parent b3cee01820
commit 1a4d1904ae
5 changed files with 37 additions and 44 deletions

View file

@ -444,8 +444,8 @@ jQuery.extend({
// not own constructor property must be Object
if ( obj.constructor
&& !hasOwnProperty.call(obj, "constructor")
&& !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
&& !hasOwnProperty.call(obj, "constructor")
&& !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
return false;
}
@ -481,7 +481,7 @@ jQuery.extend({
script.text = data;
}
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
// This arises when a base node is used (#2709).
head.insertBefore( script, head.firstChild );
head.removeChild( script );