Skip to content

Commit

Permalink
turned off intro for app submission
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanneff committed May 19, 2016
1 parent d00ca07 commit ad5a44d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Organize/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
window = UIWindow(frame: UIScreen.mainScreen().bounds)
if let window = window {
window.backgroundColor = UIColor.whiteColor()
window.rootViewController = IntroNavigationController()
// TODO: change back
// window.rootViewController = IntroNavigationController()
window.rootViewController = MenuNavigationController()
window.makeKeyAndVisible()
}
}
Expand Down
2 changes: 1 addition & 1 deletion Organize/Config.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import UIKit

struct Config {
static let appName: String = "Organize"
static let appLoadingDelay: Double = 0.4
static let appLoadingDelay: Double = 0.8

static let buttonHeight: CGFloat = 44
static let buttonPadding: CGFloat = 10
Expand Down
5 changes: 4 additions & 1 deletion Organize/IntroNavigationController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ class IntroNavigationController: UINavigationController {
}

private func determineController() {
displayController(navController: MenuNavigationController())
// Util.delay(Config.appLoadingDelay) {
// self.displayController(navController: MenuNavigationController())
// }


// User.get(completion: { user in
// if user == nil {
Expand Down

0 comments on commit ad5a44d

Please sign in to comment.