Skip to content

Commit

Permalink
fix(view-slot): out of bounds on array for content selector remove all
Browse files Browse the repository at this point in the history
Fixes #136
  • Loading branch information
EisenbergEffect committed Aug 4, 2015
1 parent 77452a1 commit eb34505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view-slot.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export class ViewSlot {
view = children[i];

for(j = 0; j < jj; ++j){
contentSelectors[j].removeAt(i, view.fragment);
contentSelectors[j].removeAt(0, view.fragment);
}
}

Expand Down

0 comments on commit eb34505

Please sign in to comment.