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

Commit

Permalink
Added isNaN check for CSS position check to prevent positioning error…
Browse files Browse the repository at this point in the history
…s occurring
  • Loading branch information
Craga89 committed Sep 11, 2010
1 parent 53a2bcd commit 613c32e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 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: Fri Sep 10 18:40:44 2010 +0100
* Date: Sat Sep 11 08:59:49 2010 +0100
*/

.ui-tooltip-accessible{
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: Fri Sep 10 18:40:44 2010 +0100
* Date: Sat Sep 11 08:59:49 2010 +0100
*/

"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 @@ -1025,7 +1025,7 @@ function QTip(target, options, id)
$(this).dequeue();
});
}
else {
else if(!isNaN(position.left, position.right)) {
tooltip.css(position);
}

Expand Down
10 changes: 5 additions & 5 deletions dist/jquery.qtip.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 613c32e

Please sign in to comment.