git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24463a0
)
missing semi-colon
author
Brandon Aaron
<brandon.aaron@gmail.com>
Sat, 21 Jul 2007 01:53:38 +0000
(
01:53
+0000)
committer
Brandon Aaron
<brandon.aaron@gmail.com>
Sat, 21 Jul 2007 01:53:38 +0000
(
01:53
+0000)
src/ajax/ajax.js
patch
|
blob
|
history
diff --git
a/src/ajax/ajax.js
b/src/ajax/ajax.js
index
7d83a0e
..
645caf7
100644
(file)
--- a/
src/ajax/ajax.js
+++ b/
src/ajax/ajax.js
@@
-77,7
+77,7
@@
jQuery.fn.extend({
complete: function(res, status){
// If successful, inject the HTML into all the matched elements
if ( status == "success" || !ifModified && status == "notmodified" )
- self.html(res.responseText)
+ self.html(res.responseText);
self.each( callback, [res.responseText, status, res] );
}