Tweaked a couple cases where == was used instead of ===.

This commit is contained in:
jeresig 2009-12-21 18:02:02 -05:00
parent 209751fcbd
commit e083d15fc7
4 changed files with 6 additions and 6 deletions

View file

@ -416,7 +416,7 @@ jQuery.extend({
div.firstChild && div.firstChild.childNodes :
// String was a bare <thead> or <tfoot>
wrap[1] == "<table>" && !hasBody ?
wrap[1] === "<table>" && !hasBody ?
div.childNodes :
[];