Skip to content

Instantly share code, notes, and snippets.

@TCotton
Created December 12, 2014 00:59
Show Gist options
  • Save TCotton/ef10972348fbdfb2be18 to your computer and use it in GitHub Desktop.
Save TCotton/ef10972348fbdfb2be18 to your computer and use it in GitHub Desktop.
var testFlexBox = function textFlexBox() {
var flexElement = document.createElement('detect');
if (!Object.is(flexElement.style.webkitFlexWrap, 'undefined') ||
!Object.is(flexElement.style.msFlexWrap, 'undefined') ||
!Object.is(flexElement.style.flexWrap, 'undefined')
) {
return true;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment