From eb5f132aa96f838cd5ed1903b609a9e9f15ec1b6 Mon Sep 17 00:00:00 2001 From: zhangqinhghe Date: Thu, 12 Jun 2014 15:08:19 +0800 Subject: [PATCH] delete log --- www/JPushPlugin.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/www/JPushPlugin.js b/www/JPushPlugin.js index 49e82e7..6365a21 100644 --- a/www/JPushPlugin.js +++ b/www/JPushPlugin.js @@ -1,4 +1,3 @@ -cordova.define("cn.jpush.phonegap.JPushPlugin.JPushPlugin", function(require, exports, module) { var JPushPlugin = function(){ }; @@ -11,10 +10,8 @@ JPushPlugin.prototype.error_callback = function(msg){ } JPushPlugin.prototype.call_native = function(name, args, callback){ - console.log("start JPushPlugin.prototype.call_native"); - ret = cordova.exec(callback,this.error_callback,'JPushPlugin',name,args); - console.log("end JPushPlugin.prototype.call_native"); + ret = cordova.exec(callback,this.error_callback,'JPushPlugin',name,args); return ret; } @@ -175,4 +172,3 @@ if(!window.plugins.jPushPlugin){ module.exports = new JPushPlugin(); -});