1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-26 08:20:58 +01:00

remove mod controls from quick reply, looks shit

This commit is contained in:
Michael Foster 2013-09-15 07:49:14 +10:00
parent b01603a184
commit 13f4de6655

View File

@ -122,6 +122,11 @@ var show_quick_reply = function(){
$td.find('input[name="file_url"]').removeAttr('id'); $td.find('input[name="file_url"]').removeAttr('id');
} }
} }
// Remove mod controls, because it looks shit.
if ($td.find('input[type="checkbox"]').length) {
$(this).remove();
}
} }
}); });