TemplateStamp: fix TreeWalker

IE/older Safari require all arguments.
This commit is contained in:
Steven Orvell
2018-11-01 15:33:01 -07:00
parent 5c3bf54c4a
commit c274670456
+2 -1
View File
@@ -16,7 +16,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
'use strict';
const walker = document.createTreeWalker(document);
const walker = document.createTreeWalker(document, NodeFilter.SHOW_ALL,
null, false);
// 1.x backwards-compatible auto-wrapper for template type extensions
// This is a clear layering violation and gives favored-nation status to