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 prerender issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed May 29, 2012
1 parent e5c89fe commit b8bf128
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 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: Tue May 29 21:02:22 2012 +0100
* Date: Tue May 29 21:18:09 2012 +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: Tue May 29 21:02:22 2012 +0100
* Date: Tue May 29 21:18:09 2012 +0100
*/

/* Core qTip styles */
Expand Down
3 changes: 2 additions & 1 deletion 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: Tue May 29 21:02:22 2012 +0100
* Date: Tue May 29 21:18:09 2012 +0100
*/

/*jslint browser: true, onevar: true, undef: true, nomen: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: true */
Expand Down Expand Up @@ -2537,6 +2537,7 @@ function Modal(api)
html: '<div></div>',
mousedown: function() { return FALSE; }
})
.hide()
.insertAfter( $(selector).last() );

// Update position on window resize or scroll
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.qtip.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/modal/modal.js
Expand Up @@ -152,6 +152,7 @@ function Modal(api)
html: '<div></div>',
mousedown: function() { return FALSE; }
})
.hide()
.insertAfter( $(selector).last() );

// Update position on window resize or scroll
Expand Down

0 comments on commit b8bf128

Please sign in to comment.