Skip to content

Commit

Permalink
fix(ViewCompiler) Internet Explorer specific issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jdanyow committed Mar 23, 2015
1 parent 43c076c commit 1bf18ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view-slot.js
Expand Up @@ -119,7 +119,7 @@ export class ViewSlot {
return view;
};

var element = view.firstChild !== null && view.firstChild.nextElementSibling !== null ? view.firstChild.nextElementSibling : null;
var element = view.firstChild !== null && view.firstChild.nextElementSibling ? view.firstChild.nextElementSibling : null;
if(view.firstChild !== null &&
view.firstChild.nodeType === 8 &&
element !== null &&
Expand Down

0 comments on commit 1bf18ea

Please sign in to comment.