mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 16:58:03 -05:00
reverted iPhone/ChildBrowser for PhoneGap 1.4.1 per Issue #643 I will tag relavent commits so PG/CDV version support can easily be found
31 lines
640 B
Objective-C
Executable File
31 lines
640 B
Objective-C
Executable File
//
|
|
// PhoneGap ! ChildBrowserCommand
|
|
//
|
|
//
|
|
// Created by Jesse MacFadyen on 10-05-29.
|
|
// Copyright 2010 Nitobi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#ifdef PHONEGAP_FRAMEWORK
|
|
#import <PhoneGap/PGPlugin.h>
|
|
#else
|
|
#import "PGPlugin.h"
|
|
#endif
|
|
#import "ChildBrowserViewController.h"
|
|
|
|
|
|
|
|
@interface ChildBrowserCommand : PGPlugin <ChildBrowserDelegate> {
|
|
|
|
ChildBrowserViewController* childBrowser;
|
|
}
|
|
|
|
@property (nonatomic, retain) ChildBrowserViewController *childBrowser;
|
|
|
|
|
|
- (void) showWebPage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
-(void) onChildLocationChange:(NSString*)newLoc;
|
|
|
|
@end
|