Skip to content

Commit c4a3125

Browse files
committed
chore: lint
1 parent cccdfd5 commit c4a3125

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

nativescript-angular/platform-common.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,11 @@ export class NativeScriptPlatformRef extends PlatformRef {
215215
launchView = this.appOptions.launchView;
216216
} else {
217217
launchView = new GridLayout();
218-
// Custom launch view color (useful when doing async app intializers where you don't want a flash of undesirable color)
219-
launchView.backgroundColor = new Color(this.appOptions && this.appOptions.backgroundColor ? this.appOptions.backgroundColor : '#fff');
218+
// Custom launch view color
219+
// Useful when using async app intializers to avoid flash of undesirable color
220+
launchView.backgroundColor = new Color(this.appOptions && this.appOptions.backgroundColor ? this.appOptions.backgroundColor : "#fff");
220221
}
221-
222+
222223
setRootPage(<any>launchView);
223224
args.root = launchView;
224225

@@ -261,7 +262,7 @@ export class NativeScriptPlatformRef extends PlatformRef {
261262
(<any>global).Zone.drainMicroTaskQueue();
262263
if (isLogEnabled()) {
263264
bootstrapLog("bootstrapAction called, draining micro tasks queue finished! Root: " + rootContent);
264-
}
265+
}
265266
});
266267
}
267268
);

0 commit comments

Comments
 (0)