Browse Source

quick-reply.js: make display of embed and remote upload fields optional

pull/40/head
czaks 10 years ago
parent
commit
f50eb94929
  1. 18
      js/quick-reply.js
  2. 6
      js/settings.js

18
js/quick-reply.js

@ -216,13 +216,16 @@
if ($td.find('input[name="file_url"]').length) {
$file_url = $td.find('input[name="file_url"]');
// Make a new row for it
var $newRow = $('<tr><td colspan="2"></td></tr>');
if (settings.get('show_remote', false)) {
// Make a new row for it
var $newRow = $('<tr><td colspan="2"></td></tr>');
$file_url.clone().attr('placeholder', _('Upload URL')).appendTo($newRow.find('td'));
$file_url.parent().remove();
$file_url.clone().attr('placeholder', _('Upload URL')).appendTo($newRow.find('td'));
$newRow.insertBefore(this);
$newRow.insertBefore(this);
}
$file_url.parent().remove();
$td.find('label').remove();
$td.contents().filter(function() {
@ -236,6 +239,11 @@
}
}
// Disable embedding if configured so
if (!settings.get('show_embed', false) && $td.find('input[name="embed"]').length) {
$(this).remove();
}
// Remove oekaki if existent
if ($(this).is('#oekaki')) {
$(this).remove();

6
js/settings.js

@ -30,7 +30,11 @@ tb_settings['quick-reply'] = {
// Hide form when scrolled to top of page (where original form is visible)
hide_at_top: true,
// "Quick reply" button floating at the top right hand corner of the page at all times
floating_link: true
floating_link: true,
// Show remote in quick reply
show_remote: false,
// Show embedding in quick reply
show_embed: false
};
// ajax.js

Loading…
Cancel
Save