Skip to content

Commit

Permalink
#114 Next screen appears before transition is complete
Browse files Browse the repository at this point in the history
  • Loading branch information
EddyVerbruggen committed Feb 12, 2016
1 parent 2d7cbc2 commit 860e2f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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.",
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="com.telerik.plugins.nativepagetransitions"
version="0.6.1">
version="0.6.2">

<name>Native Page Transitions</name>

Expand Down
4 changes: 2 additions & 2 deletions src/ios/NativePageTransitions.m
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 860e2f6

Please sign in to comment.