From ae04b6c6d912aef20b55acc312452230c8247fdf Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 10:59:38 +0800 Subject: [PATCH] delete console --- dist/quantity/index.js | 4 +--- example/icon/index.js | 14 ++------------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/dist/quantity/index.js b/dist/quantity/index.js index 58cd5d91..e3d1870b 100644 --- a/dist/quantity/index.js +++ b/dist/quantity/index.js @@ -4,9 +4,7 @@ function handle(e, num) { var disabled = dataset.disabled; var quantity = +dataset.quantity; - console.error(disabled, typeof disabled); - - if (disabled == true) return null; + if (disabled) return null; callback.call(this, componentId, quantity + num); } diff --git a/example/icon/index.js b/example/icon/index.js index 843ceb7c..a9eadd4b 100644 --- a/example/icon/index.js +++ b/example/icon/index.js @@ -1,5 +1,3 @@ -var app = getApp() - Page({ data: { icons: [ @@ -8,14 +6,6 @@ Page({ 'certificate', 'arrow', 'shopping-cart', - ] - }, - - onLoad: function () { - - }, - - onShow: function() { - }, -}) + } +});