Skip to content

Commit

Permalink
fix(view-compiler): missed update to content projection with new inst…
Browse files Browse the repository at this point in the history
…ruction lookup
  • Loading branch information
EisenbergEffect committed Jul 30, 2015
1 parent fce9dc0 commit 589c9d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/view-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,13 @@ export class ViewCompiler {

if(tagName === 'content'){
if(targetLightDOM){
instructions.push({
auTargetID = makeIntoInstructionTarget(node);
instructions[auTargetID] = {
parentInjectorId: parentInjectorId,
contentSelector: true,
selector:node.getAttribute('select'),
suppressBind: true
});
makeIntoInstructionTarget(node);
};
}
return node.nextSibling;
} else if(tagName === 'template'){
Expand Down

0 comments on commit 589c9d7

Please sign in to comment.