From 0913cc204d49906585caef892ff392bfffc7736f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Tron=C3=AD=C4=8Dek?= Date: Wed, 20 Jan 2021 17:51:28 +0100 Subject: [PATCH] Unnecesary spaces --- animations.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/animations.js b/animations.js index 482a1f9..076ff51 100644 --- a/animations.js +++ b/animations.js @@ -1,6 +1,6 @@ $("body").append(''); $(".column").on('click', function() { - if ($(this).hasClass( "skip-animation" )){ + if ($(this).hasClass("skip-animation")){ return; } @@ -107,7 +107,7 @@ $('#multiselect-trigger').on('mousedown touchend focusin focusout', function(e) $('#multiselect-trigger3').on('mousedown touchend focusin focusout', function(e) { const state = $(this).attr('data-state') || 0; - if( state == 0 ) { + if(state == 0) { // open the dropdown errorlog(`STATE: ${state}`); $(this).attr('data-state', '1').addClass('open').removeClass('closed');