From daa44b36af7d2163d7b1c9e4f428a9bbbbfb09e0 Mon Sep 17 00:00:00 2001 From: Felix Hamann Date: Tue, 3 Apr 2018 19:00:48 +0200 Subject: [PATCH] removed click-listener from file-checkbox-container --- templates/standalone/inputs.julius | 3 --- 1 file changed, 3 deletions(-) diff --git a/templates/standalone/inputs.julius b/templates/standalone/inputs.julius index 30c3ebad9..e677cdcc4 100644 --- a/templates/standalone/inputs.julius +++ b/templates/standalone/inputs.julius @@ -158,9 +158,6 @@ window.utils.reactiveFileCheckbox = function(input) { // adds eventlistener(s) function addListener(container) { - container.addEventListener('click', function() { - input.click(); - }); input.addEventListener('change', function(event) { container.classList.toggle('file-checkbox__container--checked', this.checked); });