diff --git a/plugins/haptics.md b/plugins/haptics.md index e74e9ae..e9c9cda 100644 --- a/plugins/haptics.md +++ b/plugins/haptics.md @@ -23,7 +23,6 @@ Thanks to [Eddy Verbruggen](EddyVerbruggen) for providing [nativescript-taptic-e - [Use @nativescript/haptics](#use-nativescripthaptics) - [API](#api) - [isSupported()](#issupported) - - [is6SAnd6SPlusSupported()](#is6sand6splussupported) - [selection()](#selection) - [notifcation()](#notification) - [impact()](#impact) @@ -56,16 +55,6 @@ Checks if haptics is supported on the device. --- -### is6SAnd6SPlusSupported() - -```ts -isHapticsSupported: boolean = Haptics.is6SAnd6SPlusSupported() -``` - -Checks if Haptics is supported on iOS. - ---- - ### selection() ```ts @@ -112,7 +101,7 @@ There are 3 impact types: To use the haptics fallbacks, check if there is support: ```ts -if (!Haptics.isSupported() && Haptics.is6SAnd6SPlusSupported()) { +if (!Haptics.isSupported()) { // use HapticsFallback } ```