|
|
@@ -3816,23 +3816,22 @@ function validate_captcha(form)
|
|
|
}
|
|
|
|
|
|
function updateProductTotalMessage(billingcycle) {
|
|
|
- console.log(billingcycle);
|
|
|
switch(billingcycle) {
|
|
|
case 'monthly':
|
|
|
+ console.log("init: " + billingcycle);
|
|
|
jQuery('#producttotalmessage').html('Monatlich');
|
|
|
break;
|
|
|
case 'quarterly':
|
|
|
+ console.log("init: " + billingcycle);
|
|
|
jQuery('#producttotalmessage').html('4teljährlich');
|
|
|
- console.log("Test");
|
|
|
break;
|
|
|
case 'semiannually':
|
|
|
+ console.log("init: " + billingcycle);
|
|
|
jQuery('#producttotalmessage').html('Halbjährlich');
|
|
|
break;
|
|
|
case 'annually':
|
|
|
+ console.log("init: " + billingcycle);
|
|
|
jQuery('#producttotalmessage').html('Jährlich');
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
-$( document ).ready(function() {
|
|
|
- updateProductTotalMessage('monthly');
|
|
|
-});
|