andre 4 years ago
parent
commit
58517d4000
1 changed files with 3 additions and 4 deletions
  1. 3 4
      js/scripts.js

+ 3 - 4
js/scripts.js

@@ -3631,7 +3631,7 @@ function updateConfigurableOptions(i, billingCycle) {
         }
         }
     );
     );
     recalctotals();
     recalctotals();
-    updateProductTotalMessage(billingCycle);
+    updateProductTotalMessage();
 }
 }
 
 
 function recalctotals() {
 function recalctotals() {
@@ -3815,9 +3815,8 @@ function validate_captcha(form)
     });
     });
 }
 }
 
 
-function updateProductTotalMessage(billingcycle) {
-    console.log(billingcycle);
-    if (billingcycle == 'annually') {
+function updateProductTotalMessage() {
+    if (billingCycle == 'annually') {
         jQuery('#producttotalmessage').html('Test');
         jQuery('#producttotalmessage').html('Test');
     }
     }
 }
 }