Merge pull request #4602 from tgxworld/fix_likes_being_quoted

FIX: Only quote `.cooked` text.
This commit is contained in:
Guo Xiang Tan 2017-01-03 14:02:21 +08:00 committed by GitHub
commit 761d524024

View File

@ -32,6 +32,9 @@ export default Ember.Component.extend({
let firstRange, postId;
for (let r = 0; r < selection.rangeCount; r++) {
const range = selection.getRangeAt(r);
if ($(range.endContainer).closest('.cooked').length === 0) return;
const $ancestor = $(range.commonAncestorContainer);
firstRange = firstRange || range;