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

Commit

Permalink
filter upgrade for modal plugin. Thanks texel
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Aug 18, 2011
1 parent 257a08f commit 657671d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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: Fri Aug 12 20:46:46 2011 +0100
* Date: Sun Aug 14 13:09:40 2011 +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: Fri Aug 12 20:46:46 2011 +0100
* Date: Sun Aug 14 13:09:40 2011 +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: Fri Aug 12 20:46:46 2011 +0100
* Date: Sun Aug 14 13:09:40 2011 +0100
*/

/*jslint browser: true, onevar: true, undef: true, nomen: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: true */
Expand Down Expand Up @@ -2891,7 +2891,7 @@ function Modal(api)

// Focus any other visible modals when this one hides
.bind('tooltiphide'+globalNamespace, function(event) {
$('[' + attr + ']:visible').not(tooltip).last().qtip('focus', event);
$('[' + attr + ']').filter(':visible').not(tooltip).last().qtip('focus', event);
});

// Apply keyboard "Escape key" close handler
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.qtip.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/jquery.qtip.pack.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/modal.js
Expand Up @@ -85,7 +85,7 @@ function Modal(api)

// Focus any other visible modals when this one hides
.bind('tooltiphide'+globalNamespace, function(event) {
$('[' + attr + ']:visible').not(tooltip).last().qtip('focus', event);
$('[' + attr + ']').filter(':visible').not(tooltip).last().qtip('focus', event);
});

// Apply keyboard "Escape key" close handler
Expand Down

0 comments on commit 657671d

Please sign in to comment.