Skip to content

Commit

Permalink
code style cleanup (use single quotes)
Browse files Browse the repository at this point in the history
  • Loading branch information
aFarkas committed Aug 27, 2012
1 parent c992e33 commit e860072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modernizr.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ window.Modernizr = (function( window, document, undefined ) {
fakeBody.appendChild(div);
if ( !body ) {
//avoid crashing IE8, if background image is used
fakeBody.style.background = "";
fakeBody.style.background = '';
//Safari 5.13/5.1.4 OSX stops loading if ::-webkit-scrollbar is used and scrollbars are visible
fakeBody.style.overflow = "hidden";
fakeBody.style.overflow = 'hidden';
docOverflow = docElement.style.overflow;
docElement.style.overflow = 'hidden';
docElement.appendChild(fakeBody);
Expand Down

0 comments on commit e860072

Please sign in to comment.