From af657bc6e73e63751e74d7f854ab46f13c3a8e08 Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Sun, 15 Sep 2013 07:49:14 +1000 Subject: [PATCH] remove mod controls from quick reply, looks shit --- js/quick-reply.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/quick-reply.js b/js/quick-reply.js index 0abf4be3..3fcdb331 100644 --- a/js/quick-reply.js +++ b/js/quick-reply.js @@ -122,6 +122,11 @@ var show_quick_reply = function(){ $td.find('input[name="file_url"]').removeAttr('id'); } } + + // Remove mod controls, because it looks shit. + if ($td.find('input[type="checkbox"]').length) { + $(this).remove(); + } } });