mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-26 16:14:16 +03:00
37 lines
1.1 KiB
Objective-C
37 lines
1.1 KiB
Objective-C
//
|
|
// AtomicityAppDelegate.m
|
|
// Atomicity
|
|
//
|
|
// Created by Chris Wanstrath on 8/18/11.
|
|
// Copyright 2011 GitHub. All rights reserved.
|
|
//
|
|
|
|
#import "AtomicityAppDelegate.h"
|
|
|
|
#import <WebKit/WebKit.h>
|
|
#import "JSCocoa.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]];
|
|
|
|
// https://github.com/parmanoir/jscocoa#readme
|
|
JSCocoa* jsc = [[JSCocoa alloc] initWithGlobalContext:[[webView mainFrame] globalContext]];
|
|
[jsc setObject:self withName:@"App"];
|
|
}
|
|
|
|
@end
|