Removed unnecessary instances of === or !==.

This commit is contained in:
John Resig 2006-06-05 16:19:03 +00:00
parent b52b19ac4a
commit 6e69be6687
2 changed files with 10 additions and 10 deletions

View file

@ -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";
}