From 081e8d9824b0ab4e4689d4aa0bc56bda2681ea9a Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 21 May 2018 10:21:46 -0400 Subject: [PATCH] Add html tag to legacy layer (#1202) --- src/util/legacy-support.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util/legacy-support.js b/src/util/legacy-support.js index 79b1ec7399..7bf8c58649 100644 --- a/src/util/legacy-support.js +++ b/src/util/legacy-support.js @@ -4,6 +4,8 @@ */ import { PolymerElement } from '@polymer/polymer/polymer-element.js'; import { Polymer } from '@polymer/polymer/polymer-legacy.js'; +import { html } from '@polymer/polymer/lib/utils/html-tag.js'; Polymer.Element = PolymerElement; +Polymer.html = html; window.Polymer = Polymer;