Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #83 from manifoldjs/v0.3.1
Browse files Browse the repository at this point in the history
V0.3.1 Handle network connectivity changes in iOS
  • Loading branch information
f2bo authored Jul 7, 2016
2 parents d7e4973 + 345d48e commit 268a4e5
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 68 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-hostedwebapp",
"version": "0.3.0",
"version": "0.3.1",
"description": "Hosted Web App Plugin",
"cordova": {
"id": "cordova-plugin-hostedwebapp",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-hostedwebapp"
version="0.3.0">
version="0.3.1">
<name>HostedWebApp</name>
<description>Hosted Web App Plugin</description>
<license>MIT License</license>
Expand Down
16 changes: 8 additions & 8 deletions src/ios/CDVHostedWebApp.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@

@interface CDVHostedWebApp : CDVPlugin
{
CVDWebViewNotificationDelegate *notificationDelegate;
NSDictionary *manifest;
CVDWebViewNotificationDelegate* notificationDelegate;
NSDictionary* manifest;
}

@property (nonatomic, strong, readonly) NSDictionary *manifest;
@property (nonatomic, strong, readonly) NSDictionary* manifest;

-(void) loadManifest:(CDVInvokedUrlCommand*)command;
- (void)loadManifest:(CDVInvokedUrlCommand*)command;

-(void) getManifest:(CDVInvokedUrlCommand*)command;
- (void)getManifest:(CDVInvokedUrlCommand*)command;

-(void) enableOfflinePage:(CDVInvokedUrlCommand*)command;
- (void)enableOfflinePage:(CDVInvokedUrlCommand*)command;

-(void) disableOfflinePage:(CDVInvokedUrlCommand*)command;
- (void)disableOfflinePage:(CDVInvokedUrlCommand*)command;

-(void) injectPluginScript:(CDVInvokedUrlCommand *)command;
- (void)injectPluginScript:(CDVInvokedUrlCommand*)command;

@end
Loading

0 comments on commit 268a4e5

Please sign in to comment.