mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-04 11:10:04 -04:00
FIX: Clicking Reply with quoted text should work like quote button
Before this patch, it would ask you if you were sure you wanted to cancel your draft even if you didn't input anything.
This commit is contained in:
parent
43c7320f55
commit
1e2f2a244c
1 changed files with 3 additions and 3 deletions
|
@ -131,15 +131,15 @@ export default Ember.Controller.extend(SelectedPostsCount, BufferedContent, {
|
|||
draftSequence: topic.get('draft_sequence')
|
||||
};
|
||||
|
||||
if (quotedText) { opts.quote = quotedText; }
|
||||
|
||||
if(post && post.get("post_number") !== 1){
|
||||
opts.post = post;
|
||||
} else {
|
||||
opts.topic = topic;
|
||||
}
|
||||
|
||||
composerController.open(opts).then(function() {
|
||||
composerController.appendText(quotedText);
|
||||
});
|
||||
composerController.open(opts);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue