+
+
+//Zmieniamy siÄ™ popup
+(function() {
+ let $change = $('.l-change-pop');
+ function change() {
+ if(localStorage.getItem('change') === null) {
+ $change.addClass('show');
+ }
+
+ $change.on('click', '.l-change-pop__close', function () {
+ $change.slideUp();
+ localStorage.setItem('change', 'showed');
+
+ $menubtn = $('.c-hamburger').parent();
+ $menubtn.removeClass('is-active');
+ $('.animate', $menubtn).removeClass('animate');
+ });
+
+ $(".c-hamburger").click(function() {
+ $button = $(this).parent();
+ if ($button.hasClass('is-active')) {
+ $change.slideUp();
+ localStorage.setItem('change', 'showed');
+ } else {
+ localStorage.removeItem('change');
+ $change.slideDown({
+ start: function() {
+ $(this).css({display: "flex"});
+ }
+ });
+ }
+ });
+ }
+
+ 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);
+
+
+})();