Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Created October 6, 2017 15:07
Show Gist options
  • Save aderaaij/41a0ab4cdb262ee4018e65352dc15d13 to your computer and use it in GitHub Desktop.
Save aderaaij/41a0ab4cdb262ee4018e65352dc15d13 to your computer and use it in GitHub Desktop.
Set all vendor prefixes in vanilla js.
export function setVendor(element, property, value) {
element.style["Webkit" + property] = value;
element.style["Moz" + property] = value;
element.style["ms" + property] = value;
element.style["o" + property] = value;
element.style[property] = value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment