Github user jasongin commented on a diff in the pull request:

    https://github.com/apache/cordova-windows/pull/173#discussion_r61665577
  
    --- Diff: template/www/cordova.js ---
    @@ -1508,9 +1509,10 @@ module.exports = {
                 // OR cordova.require('cordova/platform').activationContext
                 // activationContext:{type: actType, args: args};
                 var activationHandler = function (e) {
    -                var args = e.detail.arguments;
    -                var actType = e.detail.type;
    -                platform.activationContext = { type: actType, args: args };
    +                // Making all the details available as activationContext
    +                platform.activationContext = utils.clone(e.detail); 
    +                platform.activationContext.args = e.detail.arguments;      
 /* for backwards compatibility */
    +                platform.activationContext.actType = e.detail.type;        
 /* for backwards compatibility */
    --- End diff --
    
    Same here with actType.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to