Browse Source

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

Conflicts:
	js/quick-reply.js
pull/40/head
czaks 10 years ago
committed by Michael Foster
parent
commit
4eb08945b7
  1. 10
      js/quick-reply.js

10
js/quick-reply.js

@ -235,6 +235,16 @@
$td.removeAttr('colspan');
}
}
// Remove oekaki if existent
if ($(this).is('#oekaki')) {
$(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) {

Loading…
Cancel
Save