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
|
@ -20,7 +20,7 @@
|
|||
|
||||
jQuery.support = {
|
||||
// IE strips leading whitespace when .innerHTML is used
|
||||
leadingWhitespace: div.firstChild.nodeType == 3,
|
||||
leadingWhitespace: div.firstChild.nodeType === 3,
|
||||
|
||||
// Make sure that tbody elements aren't automatically inserted
|
||||
// IE will insert them into empty tables
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue