remove mod controls from quick reply, looks shit

This commit is contained in:
Michael Foster 2013-09-15 07:49:14 +10:00
parent 841dbaef90
commit af657bc6e7

View File

@ -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();
}
}
});