Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const docStyles = document.documentElement.style;
  2. const hasSupport = (('flexWrap' in docStyles) || ('WebkitFlexWrap' in docStyles) || ('msFlexWrap' in docStyles));
  3.  
  4. if (!hasSupport) {
  5. document.body.classList.add('no-flexwrap');
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement