You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by "Shazron Abdullah (JIRA)" <ji...@apache.org> on 2012/07/16 19:03:35 UTC

[jira] [Commented] (CB-1066) window.invokeString is not set on resume

    [ https://issues.apache.org/jira/browse/CB-1066?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13415389#comment-13415389 ] 

Shazron Abdullah commented on CB-1066:
--------------------------------------

Related: CB-853 - we're going with window.handleOpenURL call

Is window.handleOpenURL called on resume, can you check? Technically a resume is not an invoke (eg launched by url) - you should handle the "resume" event instead:
http://docs.phonegap.com/en/1.9.0/cordova_events_events.md.html#resume

                
> window.invokeString is not set on resume
> ----------------------------------------
>
>                 Key: CB-1066
>                 URL: https://issues.apache.org/jira/browse/CB-1066
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: iOS
>    Affects Versions: 1.9.0
>         Environment: iOS 4.1
>            Reporter: Rohde Fischer
>             Fix For: 2.0.0
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> When I switch to another application (such as Safari) and follow a link that leads to my application such as: myapp://some/path the window.invokeString is not set to "myapp://some/path" as I expect.
> To reproduce, create an custom url schema for the app add this to the app:
> document.addEventListener("resume", function() {
>   console.log("Invoke: " + window.invokeString);
> }, false);
> Exit the app and follow a link that leads to the app.
> I suspect that the bug should be fixed by adding something like this to the resume:
> if (self.invokeString)
>      {
>         // this is passed before the deviceready event is fired, so you can access it in js when you receive deviceready
>         NSString* jsString = [NSString stringWithFormat:@"var invokeString = \"%@\";", self.invokeString];
>         [theWebView stringByEvaluatingJavaScriptFromString:jsString];
>      }
> The code is taken from MainViewController.m

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira