Skip to content

Commit

Permalink
Merge pull request #6127 from bhatfield/timob-17715
Browse files Browse the repository at this point in the history
[TIMOB-17715] Update default value
  • Loading branch information
pingwang2011 committed Sep 18, 2014
2 parents 6ed4268 + 19a06ef commit f53e7ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apidoc/Titanium/App/iOS/iOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,10 @@ properties:
since: "3.4.0"

- name: applicationOpenSettingsURL
summary: Returns a URL to open the apps settings.
summary: Returns a URL to open the app's settings.
description: |
Used to create a URL that you can pass to the [openURL](Titanium.Platform.openURL) method.
When you open the URL built from this string, the system launches the Settings app and displays the apps custom settings, if it has any.
When you open the URL built from this string, the system launches the Settings app and displays the app's custom settings, if it has any.
var settingsURL = Ti.App.iOS.applicationOpenSettingsURL;
if (Ti.Platform.canOpenURL(settingsURL)) {
Expand Down
4 changes: 2 additions & 2 deletions apidoc/Titanium/Geolocation/Geolocation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ description: |
<dict>
<key>NSLocationAlwaysUsageDescription</key>
<string>
Specify the reason for accessing the users location information.
Specify the reason for accessing the user's location information.
This appears in the alert dialog when asking the user for permission to
access their location.
</string>
Expand Down Expand Up @@ -340,7 +340,7 @@ events:
- name: authorization
summary: Fired when changes are made to the authorization status for location services. Available in iOS 8.0 and later.
description: |
This event is fired whenever the applications ability to use location services changes.
This event is fired whenever the application's ability to use location services changes.
Changes can occur because the user allowed or denied the use of location services for the app or the system as a whole.
properties:
- name: authorizationStatus
Expand Down
4 changes: 3 additions & 1 deletion apidoc/Titanium/UI/Window.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,9 @@ properties:
You can only set this as a createWindow({...}) option. Setting it after
window creation has no effect.
platforms: [android]
default: false
default: |
true if this is the first window launched else false; prior to Release 3.3.0, the
default was always false.
type: Boolean
availability: creation

Expand Down

0 comments on commit f53e7ed

Please sign in to comment.