Skip to content

Instantly share code, notes, and snippets.

@gauntface
Created March 30, 2017 15:31
Show Gist options
  • Save gauntface/34c6d85983320f2ae982e409d63fcef6 to your computer and use it in GitHub Desktop.
Save gauntface/34c6d85983320f2ae982e409d63fcef6 to your computer and use it in GitHub Desktop.
Feature detect vibrate on notifications.
if ('vibrate' in Notification.prototype) {
// Vibrate property is supported.
} else {
// Vibrate property is NOT supported.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment