Skip to content

Commit

Permalink
Fix typo in dom-tree-api
Browse files Browse the repository at this point in the history
  • Loading branch information
rictic committed Jan 15, 2016
1 parent 44232bd commit ae98a7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/dom-tree-api.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@

getLastElementChild: function(node) {
return node.__dom && node.__dom.lastChild ?
this._getLastElementChild(node) : node.firstElementChild;
this._getLastElementChild(node) : node.lastElementChild;
},

_getLastElementChild: function(node) {
Expand Down Expand Up @@ -285,4 +285,4 @@
};

})();
</script>
</script>

0 comments on commit ae98a7c

Please sign in to comment.