missing semi-colon
This commit is contained in:
parent
24463a04ce
commit
b965c98ff1
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ jQuery.fn.extend({
|
||||||
complete: function(res, status){
|
complete: function(res, status){
|
||||||
// If successful, inject the HTML into all the matched elements
|
// If successful, inject the HTML into all the matched elements
|
||||||
if ( status == "success" || !ifModified && status == "notmodified" )
|
if ( status == "success" || !ifModified && status == "notmodified" )
|
||||||
self.html(res.responseText)
|
self.html(res.responseText);
|
||||||
|
|
||||||
self.each( callback, [res.responseText, status, res] );
|
self.each( callback, [res.responseText, status, res] );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue