From 4ada2c3f13c98031051100b22834d36f74d58097 Mon Sep 17 00:00:00 2001 From: Gianluca Giacometti <52405+gianlucagiacometti@users.noreply.github.com> Date: Sat, 27 Jun 2020 09:30:19 +0200 Subject: [PATCH] Use more strict selector (#7452) --- skins/elastic/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skins/elastic/ui.js b/skins/elastic/ui.js index 72531c716..f3627ca58 100644 --- a/skins/elastic/ui.js +++ b/skins/elastic/ui.js @@ -1028,7 +1028,7 @@ function rcube_elastic_ui() // The same for some other checkboxes // We do this here, not in setup() because we want to cover dialogs - $('input.pretty-checkbox, .propform input[type=checkbox], .form-check input, .popupmenu.form input[type=checkbox], .menu input[type=checkbox]', context) + $('input.pretty-checkbox, .propform input[type=checkbox], .form-check input[type=checkbox], .popupmenu.form input[type=checkbox], .menu input[type=checkbox]', context) .each(function() { pretty_checkbox(this); }); // Also when we add action-row of the form, e.g. Managesieve plugin adds them after the page is ready