mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-26 16:14:16 +03:00
30 lines
895 B
Objective-C
30 lines
895 B
Objective-C
//
|
|
// AtomicityAppDelegate.m
|
|
// Atomicity
|
|
//
|
|
// Created by Chris Wanstrath on 8/18/11.
|
|
// Copyright 2011 GitHub. All rights reserved.
|
|
//
|
|
|
|
#import "AtomicityAppDelegate.h"
|
|
|
|
@implementation AtomicityAppDelegate
|
|
|
|
@synthesize window, webView;
|
|
|
|
- (void)applicationWillFinishLaunching:(NSNotification *)aNotification {
|
|
NSDictionary *defaults = [NSDictionary dictionaryWithObjectsAndKeys:
|
|
[NSNumber numberWithBool:YES], @"WebKitDeveloperExtras",
|
|
nil];
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:defaults];
|
|
}
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
|
|
id path = [[NSBundle mainBundle] URLForResource:@"index" withExtension:@"html"];
|
|
id html = [[NSString alloc] initWithContentsOfURL:path];
|
|
|
|
[[webView mainFrame] loadHTMLString:html baseURL:[[NSBundle mainBundle] resourceURL]];
|
|
}
|
|
|
|
@end
|