File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1- import { NativeScriptConfig } from '@nativescript/core'
1+ import { NativeScriptConfig } from '@nativescript/core' ;
22
33export default {
44 id : 'org.nativescript.demo' ,
@@ -9,4 +9,4 @@ export default {
99 } ,
1010 useLegacyWorkflow : false ,
1111 appPath : 'app' ,
12- } as NativeScriptConfig
12+ } as NativeScriptConfig ;
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ async function checkResultAndReturnUrl(
118118) : Promise < AuthSessionResult > {
119119 if ( Application . android && result . type !== BROWSER_TYPES . CANCEL ) {
120120 try {
121- const activity = await handleAppStateActiveOnce ( )
121+ const activity = await handleAppStateActiveOnce ( ) ;
122122 const url = getInitialURL ( activity ) ;
123123 return url && url . startsWith ( returnUrl )
124124 ? { url : url , type : BROWSER_TYPES . SUCCESS }
@@ -171,7 +171,7 @@ export function getDefaultBrowser(context: Context): string {
171171 CHROME_PACKAGE_DEV ,
172172 LOCAL_PACKAGE
173173 ] ) ) ;
174- if ( packageName == null && resolveInfos != null && resolveInfos . size ( ) > 0 ) {
174+ if ( packageName == null && resolveInfos != null && resolveInfos . size ( ) > 0 ) {
175175 return resolveInfos . get ( 0 ) . serviceInfo . packageName ;
176176 }
177177 return packageName ;
Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ export function getPresentationStyle (styleKey: string): UIModalPresentationStyl
2727 return presentationStyles [ styleKey ] !== undefined
2828 ? presentationStyles [ styleKey ]
2929 : defaultModalPresentationStyle ;
30- } ;
30+ }
3131
3232export function getTransitionStyle ( styleKey : string ) : UIModalTransitionStyle {
3333 return transitionStyles [ styleKey ] !== undefined ? transitionStyles [ styleKey ] : UIModalTransitionStyle . CoverVertical ;
34- } ;
34+ }
3535
3636export function dismissWithoutAnimation ( controller : SFSafariViewController ) : void {
3737 const transition = CATransition . animation ( ) ;
@@ -48,4 +48,4 @@ export function dismissWithoutAnimation(controller: SFSafariViewController): voi
4848 ctrl . dismissViewControllerAnimatedCompletion ( false , ( ) => {
4949 ctrl . view . layer . removeAnimationForKey ( animationKey ) ;
5050 } ) ;
51- }
51+ }
You can’t perform that action at this time.
0 commit comments