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

    https://github.com/apache/cordova-windows/pull/173#discussion_r61665566
  
    --- Diff: cordova-js-src/platform.js ---
    @@ -56,9 +57,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 --
    
    I think you don't need an actType property for back-compat. The property 
(not the variable) was previously named just "type".


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