Skip to content

Commit

Permalink
fix(tagless components): tagless components are now correctly handled
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Mar 17, 2016
1 parent bf1ccad commit 941b9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/lib/sustain.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ export default Obj.extend({
let node = this.range.firstNode;
let list = [];

list.push(node);
while (node !== this.range.lastNode) {
list.push(node);
node = node.nextSibling;
}
list.push(node);

return list;
},
Expand Down

0 comments on commit 941b9be

Please sign in to comment.