FIX: Only quote `.cooked` text.

This commit is contained in:
Guo Xiang Tan 2016-12-14 09:40:26 +08:00
parent 3b20e8b094
commit 2165d0241e
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,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;