From 9680e685e35a06aa765ecf2be6a4d15cb2f4ff88 Mon Sep 17 00:00:00 2001 From: Hevin Date: Mon, 25 Sep 2017 12:33:08 +0800 Subject: [PATCH] Remove unused console.log --- www/JPushPlugin.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/www/JPushPlugin.js b/www/JPushPlugin.js index 4c79699..7efaa9b 100644 --- a/www/JPushPlugin.js +++ b/www/JPushPlugin.js @@ -311,21 +311,18 @@ JPushPlugin.prototype.receiveRegistrationIdInAndroidCallback = function (data) { JPushPlugin.prototype.receiveMessageInAndroidCallback = function (data) { data = JSON.stringify(data) - console.log('JPushPlugin:receiveMessageInAndroidCallback: ' + data) this.receiveMessage = JSON.parse(data) cordova.fireDocumentEvent('jpush.receiveMessage', this.receiveMessage) } JPushPlugin.prototype.openNotificationInAndroidCallback = function (data) { data = JSON.stringify(data) - console.log('JPushPlugin:openNotificationInAndroidCallback: ' + data) this.openNotification = JSON.parse(data) cordova.fireDocumentEvent('jpush.openNotification', this.openNotification) } JPushPlugin.prototype.receiveNotificationInAndroidCallback = function (data) { data = JSON.stringify(data) - console.log('JPushPlugin:receiveNotificationInAndroidCallback: ' + data) this.receiveNotification = JSON.parse(data) cordova.fireDocumentEvent('jpush.receiveNotification', this.receiveNotification) }