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

Commit

Permalink
Fix issue with modal plugin and using window as target
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Mar 10, 2013
1 parent aed4705 commit 3a13ed8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions dist/jquery.qtip.css
@@ -1,12 +1,12 @@
/*!
* qTip2 - Pretty powerful tooltips - v2.0.1-34-
* qTip2 - Pretty powerful tooltips - v2.0.1-35-
* http://qtip2.com
*
* Copyright (c) 2013 Craig Michael Thompson
* Released under the MIT, GPL licenses
* http://jquery.org/license
*
* Date: Sun Mar 10 2013 01:45 GMT+0000
* Date: Sun Mar 10 2013 03:07 GMT+0000
* Plugins: svg ajax tips modal viewport imagemap ie6
* Styles: basic css3
*/
Expand Down
8 changes: 4 additions & 4 deletions dist/jquery.qtip.js
@@ -1,12 +1,12 @@
/*!
* qTip2 - Pretty powerful tooltips - v2.0.1-34-
* qTip2 - Pretty powerful tooltips - v2.0.1-35-
* http://qtip2.com
*
* Copyright (c) 2013 Craig Michael Thompson
* Released under the MIT, GPL licenses
* http://jquery.org/license
*
* Date: Sun Mar 10 2013 01:45 GMT+0000
* Date: Sun Mar 10 2013 03:07 GMT+0000
* Plugins: svg ajax tips modal viewport imagemap ie6
* Styles: basic css3
*/
Expand Down Expand Up @@ -1813,7 +1813,7 @@ if(!$.ui) {
}

// Set global qTip properties
QTIP.version = '2.0.1-34-';
QTIP.version = '2.0.1-35-';
QTIP.nextid = 0;
QTIP.inactiveEvents = 'click dblclick mousedown mouseup mousemove mouseleave mouseenter'.split(' ');
QTIP.zindex = 15000;
Expand Down Expand Up @@ -2774,7 +2774,7 @@ OVERLAY = function()
if($.expr[':'].focusable) { return $.expr[':'].focusable; }

var isTabIndexNotNaN = !isNaN($.attr(element, 'tabindex')),
nodeName = element.nodeName.toLowerCase(),
nodeName = element.nodeName && element.nodeName.toLowerCase(),
map, mapName, img;

if('area' === nodeName) {
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.min.css

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

0 comments on commit 3a13ed8

Please sign in to comment.