Skip to content

Commit

Permalink
Merge pull request #12 from frankiefu/master
Browse files Browse the repository at this point in the history
update for names changes in polyfill
  • Loading branch information
Steve Orvell committed Oct 15, 2012
2 parents 1780b04 + 58e9c54 commit 9bb4ea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/g-component.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
var establishNodeReferences = function(inRoot) {
this.$ = this.$ || {};
// search the LOCAL tree
var nodes = ShadowDom.localQueryAll(inRoot, "[id]");
var nodes = ShadowDOM.localQueryAll(inRoot, "[id]");
Array.prototype.forEach.call(nodes, function(n) {
this.$[n.id] = deref(n);
}, this);
Expand Down Expand Up @@ -162,7 +162,7 @@

var inPublicTree = function(inNodes, inNode) {
return nodeIterator(inNodes, function(n) {
if (inNode == n || inPublicTree(n.lightDom, inNode)) {
if (inNode == n || inPublicTree(n.lightDOM, inNode)) {
return true;
}
});
Expand Down

0 comments on commit 9bb4ea4

Please sign in to comment.