fix: remove console.log

This commit is contained in:
prssanna 2021-01-21 15:31:42 +05:30
parent 0c0155e885
commit f3d321fb82

View File

@ -63,7 +63,6 @@ frappe.ready(() => {
}); });
$('.btn-new-address').click(() => { $('.btn-new-address').click(() => {
console.log('clicked');
const d = new frappe.ui.Dialog({ const d = new frappe.ui.Dialog({
title: __('New Address'), title: __('New Address'),
fields: [ fields: [
@ -177,12 +176,5 @@ frappe.ready(() => {
function toggle_billing_address_section(flag) { function toggle_billing_address_section(flag) {
$('[data-section="billing-address"]').toggle(flag); $('[data-section="billing-address"]').toggle(flag);
} }
$('.btn-change-address').click(() => {
// const d = new frappe.ui.Dialog({
// })
// d.show();
});
}); });
</script> </script>