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

Commit

Permalink
Fix IE6 modal fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Nov 15, 2012
1 parent 263aa53 commit 7e6cc23
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.qtip.css
Expand Up @@ -614,6 +614,6 @@


/* IE6 Modal plugin fix */
#qtip-overlay.ie6-fix{
.qtipmodal-ie6fix{
position: absolute !important;
}
2 changes: 1 addition & 1 deletion dist/jquery.qtip.js
Expand Up @@ -3255,7 +3255,7 @@ function IE6(api)
win.bind('scroll.qtip-ie6, resize.qtip-ie6', scroll);
scroll(); // Fire it initially too

elem.overlay.addClass('ie6-fix'); // Add fix class
elems.overlay.addClass('qtipmodal-ie6fix'); // Add fix class

modalProcessed = TRUE; // Set flag
}
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.qtip.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/ie6/ie6.css
@@ -1,4 +1,4 @@
/* IE6 Modal plugin fix */
#qtip-overlay.ie6-fix{
.qtipmodal-ie6fix{
position: absolute !important;
}
2 changes: 1 addition & 1 deletion src/ie6/ie6.js
Expand Up @@ -51,7 +51,7 @@ function IE6(api)
win.bind('scroll.qtip-ie6, resize.qtip-ie6', scroll);
scroll(); // Fire it initially too

elem.overlay.addClass('ie6-fix'); // Add fix class
elems.overlay.addClass('qtipmodal-ie6fix'); // Add fix class

modalProcessed = TRUE; // Set flag
}
Expand Down

0 comments on commit 7e6cc23

Please sign in to comment.