From f3d321fb82e09cdf1bf498565274004dce36aa5d Mon Sep 17 00:00:00 2001 From: prssanna Date: Thu, 21 Jan 2021 15:31:42 +0530 Subject: [PATCH] fix: remove console.log --- erpnext/templates/includes/cart/cart_address.html | 8 -------- 1 file changed, 8 deletions(-) diff --git a/erpnext/templates/includes/cart/cart_address.html b/erpnext/templates/includes/cart/cart_address.html index 3c8267c43d..84a9430956 100644 --- a/erpnext/templates/includes/cart/cart_address.html +++ b/erpnext/templates/includes/cart/cart_address.html @@ -63,7 +63,6 @@ frappe.ready(() => { }); $('.btn-new-address').click(() => { - console.log('clicked'); const d = new frappe.ui.Dialog({ title: __('New Address'), fields: [ @@ -177,12 +176,5 @@ frappe.ready(() => { function toggle_billing_address_section(flag) { $('[data-section="billing-address"]').toggle(flag); } - - $('.btn-change-address').click(() => { - // const d = new frappe.ui.Dialog({ - // }) - - // d.show(); - }); });