Skip to content

Commit f3d7871

Browse files
committed
missing semicolons
1 parent aab97f3 commit f3d7871

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

jquery.form.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* jQuery Form Plugin
3-
* version: 3.07 (06-APR-2012)
3+
* version: 3.08 (07-APR-2012)
44
* @requires jQuery v1.3.2 or later
55
*
66
* Examples and documentation at: http://malsup.com/jquery/form/
@@ -246,16 +246,16 @@ $.fn.ajaxSubmit = function(options) {
246246
percent = Math.ceil(position / total * 100);
247247
}
248248
options.uploadProgress(event, position, total, percent);
249-
}
249+
};
250250
}
251251
return xhr;
252-
}
252+
};
253253
}
254254

255-
s.data = null;
256-
var beforeSend = s.beforeSend;
257-
s.beforeSend = function(xhr, o) {
258-
o.data = formdata;
255+
s.data = null;
256+
var beforeSend = s.beforeSend;
257+
s.beforeSend = function(xhr, o) {
258+
o.data = formdata;
259259
if(beforeSend)
260260
beforeSend.call(o, xhr, options);
261261
};

0 commit comments

Comments
 (0)