From 859ccd54a6c58dfba3416336321ec2bf5759e57b Mon Sep 17 00:00:00 2001
From: "M.Ravi" <mondi.ravi@gmail.com>
Date: Thu, 12 Oct 2017 19:06:26 +0200
Subject: [PATCH] Remove some more commented code and console logs

---
 hosting/static/hosting/js/payment.js | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/hosting/static/hosting/js/payment.js b/hosting/static/hosting/js/payment.js
index 52861e02..ef59416b 100644
--- a/hosting/static/hosting/js/payment.js
+++ b/hosting/static/hosting/js/payment.js
@@ -114,8 +114,6 @@ $(document).ready(function () {
             }
         });
     }
-    console.log("has creditcard", hasCreditcard);
-    // hasCreditcard= true;
 
     var submit_form_btn = $('#payment_button_with_creditcard');
     submit_form_btn.on('click', submit_payment);
@@ -123,11 +121,7 @@ $(document).ready(function () {
 
     function submit_payment(e) {
         e.preventDefault();
-        console.log("creditcard sdasd");
-        // if (hasCreditcard) {
         $('#billing-form').submit();
-        // }
-
     }