Skip to content

Commit

Permalink
feat: add OS_VERSION_PATCH global
Browse files Browse the repository at this point in the history
Fixes TIMOB-28098
  • Loading branch information
sgtcoolguy committed Aug 31, 2020
1 parent 11b7739 commit 86d33df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common/Resources/ti.internal/extensions/globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ Object.defineProperties(global, {
'OS_ANDROID': { value: OS_ANDROID, writable: false },
'OS_IOS': { value: OS_IOS, writable: false },
OS_VERSION_MAJOR: { value: Ti.Platform.versionMajor, writable: false },
OS_VERSION_MINOR: { value: Ti.Platform.versionMinor, writable: false }
OS_VERSION_MINOR: { value: Ti.Platform.versionMinor, writable: false },
OS_VERSION_PATCH: { value: Ti.Platform.versionPatch, writable: false }
});

0 comments on commit 86d33df

Please sign in to comment.