Fix typo in dom-tree-api

This commit is contained in:
Peter Burns 2016-01-15 15:47:07 -08:00
parent 44232bdf03
commit ae98a7c6a7

View File

@ -117,7 +117,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
getLastElementChild: function(node) {
return node.__dom && node.__dom.lastChild ?
this._getLastElementChild(node) : node.firstElementChild;
this._getLastElementChild(node) : node.lastElementChild;
},
_getLastElementChild: function(node) {
@ -285,4 +285,4 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
})();
</script>
</script>