andre преди 4 години
родител
ревизия
fa4137c226
променени са 1 файла, в които са добавени 0 реда и са изтрити 4 реда
  1. 0 4
      js/scripts.js

+ 0 - 4
js/scripts.js

@@ -3822,7 +3822,6 @@ function updateProductTotalMessage(billingcycle) {
     switch(billingcycle) {
         case 'monthly':
             billingDay = daysIntoYear(new Date(now.getFullYear(), now.getMonth() + 1, 0));
-            jQuery('#producttotalmessage').html('Monatlich');
             break;
         case 'quarterly':
             if (now.getMonth() < 3) {
@@ -3834,7 +3833,6 @@ function updateProductTotalMessage(billingcycle) {
             } else {
                 billingDay = daysIntoYear(new Date(now.getFullYear(), 11, 31)); // 31.12.
             }
-            jQuery('#producttotalmessage').html('4teljährlich');
             break;
         case 'semiannually':
             if (now.getMonth() < 6) {
@@ -3842,11 +3840,9 @@ function updateProductTotalMessage(billingcycle) {
             } else {
                 billingDay = daysIntoYear(new Date(now.getFullYear(), 11, 31)); // 31.12.
             }
-            jQuery('#producttotalmessage').html('Halbjährlich');
             break;
         case 'annually':
             billingDay = daysIntoYear(new Date(now.getFullYear(), 11, 31));
-            jQuery('#producttotalmessage').html('Jährlich');
             break;
     }
     console.log(billingDay - orderDay);