diff --git a/package.json b/package.json index 97cd67b..1e2a6e1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.6.1", + "version": "0.6.2", "name": "com.telerik.plugins.nativepagetransitions", "cordova_name": "Native Page Transitions", "description": "Slide out the current page to reveal the next one. By a native transitions.", diff --git a/plugin.xml b/plugin.xml index 0336782..015aaaa 100755 --- a/plugin.xml +++ b/plugin.xml @@ -1,7 +1,7 @@ + version="0.6.2"> Native Page Transitions diff --git a/src/ios/NativePageTransitions.m b/src/ios/NativePageTransitions.m index a3069a7..8667170 100644 --- a/src/ios/NativePageTransitions.m +++ b/src/ios/NativePageTransitions.m @@ -9,8 +9,8 @@ @implementation NativePageTransitions - (void) pluginInitialize { CGRect screenBound = [[UIScreen mainScreen] bounds]; - // Set our transitioning view - self.transitionView = self.viewController.view; + // Set our transitioning view (see #114) + self.transitionView = self.webView; // Look to see if a WKWebView exists Class wkWebViewClass = NSClassFromString(@"WKWebView");