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 (Commented) (JIRA)" <ji...@apache.org> on 2012/02/06 22:10:59 UTC

[jira] [Commented] (CB-44) "resume" event fires when "pause" is triggered

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

Shazron Abdullah commented on CB-44:
------------------------------------

In the "// Do something" for the pause event, you can't call any PhoneGap API functions (ie console.log - these get pushed into Objective-C). Anything using those will only be executed on the next runloop, so if you add a console log there, it would only be shown in the resume event - so it will appear like what you just described. Any pure JavaScript calls should be run. 

To see this in action (where it works as expected) try setting a variable on pause to a known value, then printing it on resume.
                
> "resume" event fires when "pause" is triggered
> ----------------------------------------------
>
>                 Key: CB-44
>                 URL: https://issues.apache.org/jira/browse/CB-44
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: iOS
>            Reporter: Shazron Abdullah
>
> reported at: https://github.com/phonegap/phonegap-iphone/issues/314
> by: https://github.com/tifroz
> Setting up the resume listener within the "pause" handler causes the resume event to fire upon "pause"
> ```javascript
>   document.addEventListener("pause", function() { 
>        //Do something
>        document.addEventListener("resume", function(){
>            //The code here wil actually execute when "pause" is triggered!!!
>         },false); 
>     }, false); 
> ```

--
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