This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/lib/quote-state.js.es6
Bianca Nenciu 7b7e1717f2
FIX: Quoting a quote preserves the original post information (#8746)
Let's say post #2 quotes post number #1. If a user decides to quote the
quote in post #2, it should keep the information of post #1
("user_1, post: 1, topic: X"), instead of replacing with current post
info ("user_2, post: 2, topic: X").
2020-01-22 16:10:23 +02:00

18 lines
275 B
JavaScript

export default class QuoteState {
constructor() {
this.clear();
}
selected(postId, buffer, opts) {
this.postId = postId;
this.buffer = buffer;
this.opts = opts;
}
clear() {
this.buffer = "";
this.postId = null;
this.opts = null;
}
}