Browse Source

quick-reply.js: fix interaction with upload-selection.js

pull/40/head
czaks 11 years ago
parent
commit
0894a65f88
  1. 5
      js/quick-reply.js

5
js/quick-reply.js

@ -241,6 +241,11 @@
$(this).remove();
}
// Remove upload selection
if ($(this).is('#upload_selection')) {
$(this).remove();
}
// Remove mod controls, because it looks shit.
if ($td.find('input[type="checkbox"]').length) {
var tr = this;

Loading…
Cancel
Save