Skip to content
This repository has been archived by the owner on Aug 6, 2019. It is now read-only.

Commit

Permalink
Merge pull request #15 from richardTowers/patch-1
Browse files Browse the repository at this point in the history
Tiny fix to the conditional regex
  • Loading branch information
brandonaaron committed Oct 20, 2013
2 parents 94fd160 + 2d7f8d4 commit 8843731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.bgiframe.js
Expand Up @@ -21,7 +21,7 @@
height : 'auto', // auto == offsetHeight
opacity : true,
src : 'javascript:false;',
conditional : /MSIE 6.0/.test(navigator.userAgent) // expresion or function. return false to prevent iframe insertion
conditional : /MSIE 6\.0/.test(navigator.userAgent) // expresion or function. return false to prevent iframe insertion
}, s);

// wrap conditional in a function if it isn't already
Expand Down

0 comments on commit 8843731

Please sign in to comment.