Revert "feat(renderer): use a comment instead of an element when stamping out <template> elements"

This reverts commit bb9cfe6f36.
This commit is contained in:
vsavkin
2015-11-16 11:15:28 -08:00
parent 9985968d89
commit e274ff8a69
4 changed files with 5 additions and 16 deletions
@@ -19,7 +19,7 @@ var _allViewsById = new Map<number, AppView>();
var _nextId = 0;
function _setElementId(element, indices: number[]) {
if (isPresent(element) && DOM.isElementNode(element)) {
if (isPresent(element)) {
DOM.setData(element, NG_ID_PROPERTY, indices.join(NG_ID_SEPARATOR));
}
}