+
+
+ function quit_experiment() {
+ document.cookie = 'EXPERIMENT_layout=off; path=/; max-age=31536000';
+ window.location.reload(true);
+ }
+ $(".quit-experiment").click(quit_experiment);
+
+})();
+
+//Switch
+(function() {
+ let $switchOnce = $('#switch-once');
+ let $switchMonthly = $('#switch-monthly');
+
+ $switchMonthly.on('click', function() {
+ $('.l-checkout__payments__box').removeClass('once');
+ });
+
+ $switchOnce.on('click', function() {
+ $('.l-checkout__payments__box').addClass('once');
+ });
+})();
+
+//Copy function
+(function() {
+ let $copy = $('.js-copy');
+
+ $copy.on('click', function() {
+ let $copyText = $(this).closest('.l-checkout__info__item').find('input');
+ $copyText.select();
+ document.execCommand('copy');
+ });
+})();