Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Fix to previous ajax commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Apr 24, 2012
1 parent bb7fdd3 commit f4dcdfe
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.qtip.basic.js
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Tue Apr 24 21:24:48 2012 +0100
* Date: Tue Apr 24 22:02:25 2012 +0100
*/

/*jslint browser: true, onevar: true, undef: true, nomen: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: true */
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.css
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Tue Apr 24 21:24:48 2012 +0100
* Date: Tue Apr 24 22:02:25 2012 +0100
*/

/* Core qTip styles */
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.qtip.js
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Tue Apr 24 21:24:48 2012 +0100
* Date: Tue Apr 24 22:02:25 2012 +0100
*/

/*jslint browser: true, onevar: true, undef: true, nomen: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: true */
Expand Down Expand Up @@ -2069,7 +2069,7 @@ function Ajax(api)
if(hideFirst) { stop = TRUE; api.show(event.originalEvent); }

// Call users complete method if it was defined
if((complete = defaults.success || opts.success) && $.isFunction(complete)) {
if((complete = defaults.complete || opts.complete) && $.isFunction(complete)) {
complete.apply(opts.context || api, arguments);
}
}
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.qtip.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/ajax/ajax.js
Expand Up @@ -74,7 +74,7 @@ function Ajax(api)
if(hideFirst) { stop = TRUE; api.show(event.originalEvent); }

// Call users complete method if it was defined
if((complete = defaults.success || opts.success) && $.isFunction(complete)) {
if((complete = defaults.complete || opts.complete) && $.isFunction(complete)) {
complete.apply(opts.context || api, arguments);
}
}
Expand Down

0 comments on commit f4dcdfe

Please sign in to comment.