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

Commit

Permalink
Fixed problem with AJAX plugin caused by previous hash removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Dec 13, 2010
1 parent 3800089 commit d20ae6a
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 42 deletions.
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: Sun Dec 12 18:31:07 2010 +0000
* Date: Mon Dec 13 01:26:04 2010 +0000
*/

.ui-tooltip-accessible{
Expand Down
6 changes: 3 additions & 3 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: Sun Dec 12 18:31:07 2010 +0000
* Date: Mon Dec 13 01:26:04 2010 +0000
*/

"use strict"; // Enable ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/
Expand Down Expand Up @@ -1572,7 +1572,7 @@ $.fn.qtip.defaults = {
{
// Call user-defined success handler if present
if($.isFunction(ajax.success)) {
var result = ajax.success.call(qTip.hash(), content, status);
var result = ajax.success.call(qTip, content, status);
if(result === FALSE){ return; }
}

Expand All @@ -1586,7 +1586,7 @@ $.fn.qtip.defaults = {

// Call user-defined success handler if present
if($.isFunction(ajax.error)) {
result = ajax.error.call(qTip.hash(), xhr, status, error);
result = ajax.error.call(qTip, xhr, status, error);
if(result === FALSE){ return; }
}

Expand Down

0 comments on commit d20ae6a

Please sign in to comment.