namespaces removed (except Application)

This commit is contained in:
Vladimir Enchev
2014-03-24 11:16:38 +02:00
parent d5a91269f6
commit 1b6fdae4a9
29 changed files with 1930 additions and 2040 deletions

View File

@ -36,12 +36,12 @@ export module tk {
currentApp.os = app_common_module.tk.TargetOS.iOS;
currentApp.ios = app;
app.init();
console = new console_module.tk.TKConsole();
console = new console_module.TKConsole();
}
class Application {
public nativeApp: any;
public rootController: any;
public rootController: any;
constructor(nativeApp: any) {
this.nativeApp = nativeApp;
@ -49,8 +49,8 @@ export module tk {
public init() {
UIKit.UIResponder.extends({/*TODO: Empty parameter here, needs API improvement*/}, {
name: "KimeraAppDelegate",
}).implements({
name: "KimeraAppDelegate",
}).implements({
protocol: "UIApplicationDelegate",
implementation: {
applicationDidFinishLaunchingWithOptions: function () {