fix(mixpanel): fix issue when not passing eventProperties (#927)

This commit is contained in:
Guille 2016-12-30 12:32:53 +01:00 committed by Ibby Hadeed
parent 9441928884
commit bbf75bcbd7

View File

@ -85,7 +85,10 @@ export class Mixpanel {
* @param eventProperties {any} optional
* @returns {Promise<any>}
*/
@Cordova()
@Cordova({
successIndex: 2,
errorIndex: 3
})
static track(eventName: string, eventProperties?: any): Promise<any> { return; }
/**