Tweaked a couple cases where == was used instead of ===.
This commit is contained in:
parent
209751fcbd
commit
e083d15fc7
4 changed files with 6 additions and 6 deletions
|
@ -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 :
|
||||
[];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue