From 7e8011e9eb96fff3b66748e6a22ed6504534c508 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sun, 3 Apr 2016 17:05:27 -0700 Subject: [PATCH] Firefox doesn't let me click() a checkbox that's not part of the document. --- src/Monitoring/ReplyPruning.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitoring/ReplyPruning.coffee b/src/Monitoring/ReplyPruning.coffee index 499f5113e..a8cf609b4 100644 --- a/src/Monitoring/ReplyPruning.coffee +++ b/src/Monitoring/ReplyPruning.coffee @@ -13,7 +13,7 @@ ReplyPruning = className: 'summary' style: 'cursor: pointer;' $.on @summary, 'click', => - @inputs.enabled.click() + @inputs.enabled.checked = !@inputs.enabled.checked $.event 'change', null, @inputs.enabled label = UI.checkbox 'Prune Replies', 'Show Last'