mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
30 lines
916 B
Objective-C
30 lines
916 B
Objective-C
//
|
|
// AtomicityAppDelegate.m
|
|
// Atomicity
|
|
//
|
|
// Created by Chris Wanstrath on 8/18/11.
|
|
// Copyright 2011 GitHub. All rights reserved.
|
|
//
|
|
|
|
#import "AtomicityAppDelegate.h"
|
|
#import "AtomWindowController.h"
|
|
#import "JSCocoa.h"
|
|
|
|
@implementation AtomicityAppDelegate
|
|
|
|
- (void)applicationWillFinishLaunching:(NSNotification *)aNotification {
|
|
NSDictionary *defaults = [NSDictionary dictionaryWithObjectsAndKeys:
|
|
[NSNumber numberWithBool:YES], @"WebKitDeveloperExtras",
|
|
nil];
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:defaults];
|
|
}
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
|
|
NSString *resourcePath = [[NSBundle mainBundle] resourcePath];
|
|
NSString *bootstrapPath = [resourcePath stringByAppendingString:@"/HTML/lib/bootstrap.js"];
|
|
JSCocoa* jsc = [[JSCocoa alloc] init];
|
|
[jsc evalJSFile:bootstrapPath];
|
|
}
|
|
|
|
@end
|