mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #12 from frankiefu/master
update for names changes in polyfill
This commit is contained in:
@@ -67,7 +67,7 @@ license that can be found in the LICENSE file.
|
||||
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);
|
||||
@@ -162,7 +162,7 @@ license that can be found in the LICENSE file.
|
||||
|
||||
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;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user