Browse Source

Improve citing in replies

pull/40/head
discomrade 3 years ago
parent
commit
4d0e89f9d4
  1. 9
      templates/main.js

9
templates/main.js

@ -322,10 +322,13 @@ function citeReply(id, with_link) {
var select = document.getSelection().toString();
if (select) {
var body = $('#reply_' + id + ', #op_' + id).find('div.body'); // TODO: support for OPs
var index = body.text().indexOf(select.replace('\n', '')); // for some reason this only works like this
if (index > -1) {
// commenting out this condition, not sure of the purpose and gets in the way of citing
// var index = body.text().indexOf(select.replace('\n', '')); // for some reason this only works like this
// if (index > -1) {
// quote each line in the selection
select = select.replace(/\n(.)/g, '\n>$1');
textarea.value += '>' + select + '\n';
}
// }
}
$(window).trigger('cite', [id, with_link]);

Loading…
Cancel
Save