From bde6efb9cb8f78f3606c16220c7896d928ba3315 Mon Sep 17 00:00:00 2001 From: Stanimir Karoserov Date: Tue, 8 Apr 2014 17:51:15 +0300 Subject: [PATCH] updated iOS Kimera Cuteness --- Application/application.ios.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Application/application.ios.ts b/Application/application.ios.ts index ce3d49836..f04ca39d7 100644 --- a/Application/application.ios.ts +++ b/Application/application.ios.ts @@ -58,9 +58,9 @@ export module tk { this.window = new UIKit.UIWindow(UIKit.UIScreen.mainScreen().bounds); this.window.backgroundColor = UIKit.UIColor.whiteColor(); + this.window.makeKeyAndVisible(); var iosApp = currentApp.ios; - //this.window.setRootViewController(iosApp.rootController); if (currentApp.onLaunch) { this.window.rootViewController = currentApp.onLaunch(); @@ -68,8 +68,6 @@ export module tk { log("Missing TK.UI.Application.current.onLaunch"); } - this.window.makeKeyAndVisible(); - log("applicationDidFinishLaunchingWithOptions finished."); return true; },