From e6f81519cca0c8b8ea061bb0ae5edf5ff56f6f0c Mon Sep 17 00:00:00 2001 From: Drake Date: Mon, 19 Jun 2017 22:00:05 -0300 Subject: [PATCH] docs(background-geolocation): remove references to Windows Phone (#1704) --- .../plugins/background-geolocation/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/@ionic-native/plugins/background-geolocation/index.ts b/src/@ionic-native/plugins/background-geolocation/index.ts index be616e8d6..4532c653c 100644 --- a/src/@ionic-native/plugins/background-geolocation/index.ts +++ b/src/@ionic-native/plugins/background-geolocation/index.ts @@ -125,7 +125,7 @@ export interface BackgroundGeolocationConfig { startForeground?: boolean; /** - * ANDROID, WP8 ONLY + * ANDROID ONLY * When using BackgroundGeolocation.LocationProvider.ANDROID_DISTANCE_FILTER_PROVIDER: * The minimum time interval between location updates in milliseconds. * @see Android docs (http://developer.android.com/reference/android/location/LocationManager.html#requestLocationUpdates(long,%20float,%20android.location.Criteria,%20android.app.PendingIntent)) @@ -391,7 +391,7 @@ export class BackgroundGeolocation extends IonicNativePlugin { * @returns {Promise} */ @Cordova({ - platforms: ['iOS', 'Windows Phone'] + platforms: ['iOS'] }) finish(): Promise { return; } @@ -401,7 +401,7 @@ export class BackgroundGeolocation extends IonicNativePlugin { * @returns {Promise} */ @Cordova({ - platforms: ['iOS', 'Windows Phone'] + platforms: ['iOS'] }) changePace(isMoving: boolean): Promise { return; } @@ -420,7 +420,7 @@ export class BackgroundGeolocation extends IonicNativePlugin { * @returns {Promise} */ @Cordova({ - platforms: ['iOS', 'Windows Phone'] + platforms: ['iOS'] }) getStationaryLocation(): Promise { return; } @@ -430,7 +430,7 @@ export class BackgroundGeolocation extends IonicNativePlugin { * @returns {Promise} */ @Cordova({ - platforms: ['iOS', 'Windows Phone'] + platforms: ['iOS'] }) onStationary(): Promise { return; }