Author page.
[wolnelektury.git] / src / wolnelektury / static / 2021 / scripts / main.js
index d113865..99a7fc7 100644 (file)
@@ -1,7 +1,7 @@
 // JS Menu
 (function () {
   let button = $('.js-menu');
-  let menu = $('.l-navigation__menu');
+  let menu = $('.l-navigation');
   let menuLinks = menu.find('a');
 
   button.on('click', function() {
@@ -28,7 +28,7 @@
   });
 })();
 
-// Ebook/Audiobook Btns
+/// Ebook/Audiobook Btns
 (function() {
   let button = $('.c-media__btn button:not(.l-button--media--full)');
   let popupLayer = $('.c-media__popup');
   let selectItem = $('.c-select li');
   let volumeButton = $('.icon-volume');
 
-  /*playButton.on('click', function() {
-    if($(this).find('.icon').hasClass('icon-play')) {
-      $(this).find('.icon-play').removeClass('icon-play').addClass('icon-pause');
-    } else if($(this).find('.icon').hasClass('icon-pause')) {
-      $(this).find('.icon-pause').removeClass('icon-pause').addClass('icon-play');
-    }
-  });*/
-
   button.on('click', function () {
     let target = $(this).attr('id');
     $('[data-popup=' + target).addClass('is-open');
     $(this).addClass('is-active');
   });
 
-  volumeButton.on('click', function() {
-    if($(this).hasClass('icon-volume')) {
-      $(this).removeClass('icon-volume').addClass('icon-mute');
-      $(this).next().val(0);
-      $(this).next().css('background-size', '0% 100%');
-    } else if($(this).hasClass('icon-mute')) {
-      $(this).removeClass('icon-mute').addClass('icon-volume');
-      $(this).next().val(50);
-      $(this).next().css('background-size', '50% 100%');
-    }
-  });
-
   $(document).keyup(function(e) {
     if (e.keyCode === 27) {
       $('.c-media__popup').removeClass('is-open');
   });
 })();
 
-// Range
-const rangeInputs = document.querySelectorAll('input[type="range"]')
-
-function handleInputChange(e) {
-  let target = e.target
-  if (e.target.type !== 'range') {
-    target = document.getElementById('range')
-  }
-  const min = target.min
-  const max = target.max
-  const val = target.value
-
-  target.style.backgroundSize = (val - min) * 100 / (max - min) + '% 100%'
-}
-
-rangeInputs.forEach(input => {
-  input.addEventListener('input', handleInputChange)
-});
 
 // Quotes slider
 (function () {
@@ -176,6 +138,14 @@ rangeInputs.forEach(input => {
   }
 
   if($change.length) { change(); }
+
+
+    function quit_experiment() {
+        document.cookie = 'EXPERIMENT_layout=off; path=/; max-age=31536000';
+        window.location.reload(true);
+    }
+    $(".quit-experiment").click(quit_experiment);
+
 })();
 
 //Switch
@@ -184,14 +154,31 @@ rangeInputs.forEach(input => {
   let $switchMonthly = $('#switch-monthly');
 
   $switchMonthly.on('click', function() {
-    $('.l-checkout__payments__box').removeClass('once');
+      $('.payments-once').hide();
+      $('.payments-recurring').show();
   });
 
   $switchOnce.on('click', function() {
-    $('.l-checkout__payments__box').addClass('once');
+      $('.payments-recurring').hide();
+      $('.payments-once').show();
   });
 })();
 
+
+(function() {
+
+    $('.l-checkout__payments__box button').on('click', function() {
+        let container = $(this).closest('.l-checkout__payments');
+        $('input', container).val($(this).attr('data-amount'));
+        $('.is-active', container).removeClass('is-active');
+        $(this).closest('.l-checkout__payments__box').addClass('is-active');
+        $('#kwota').val('');
+        return false;
+    });
+    
+})();
+
+
 //Copy function
 (function() {
   let $copy = $('.js-copy');