Removed unnecessary instances of === or !==.
This commit is contained in:
parent
b52b19ac4a
commit
6e69be6687
2 changed files with 10 additions and 10 deletions
|
@ -115,7 +115,7 @@ $.fn.load = function(a,o,f) {
|
|||
f = o;
|
||||
o = null;
|
||||
}
|
||||
if (o !== null) {
|
||||
if (typeof o !== 'undefined') {
|
||||
o = $.param(o);
|
||||
t = "POST";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue