Skip to content
Permalink
Browse files
Made the IE frameElement check more explicit. Fixes #3880.
  • Loading branch information
jeresig committed Jan 17, 2009
1 parent 34a9f8a commit c2fad37
Showing 1 changed file with 1 addition and 1 deletion.
@@ -638,7 +638,7 @@ function bindReady(){

// If IE and not an iframe
// continually check to see if the document is ready
if ( document.documentElement.doScroll && !window.frameElement ) (function(){
if ( document.documentElement.doScroll && typeof window.frameElement === "undefined" ) (function(){
if ( jQuery.isReady ) return;

try {

0 comments on commit c2fad37

Please sign in to comment.