Skip to content

Commit

Permalink
chore(hydrate): add globals to hydrate scope
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Aug 28, 2020
1 parent f4b3a5b commit 16de872
Showing 1 changed file with 16 additions and 0 deletions.
Expand Up @@ -37,12 +37,28 @@ export function hydrateFactory($stencilWindow, $stencilHydrateOpts, $stencilHydr
var DOMTokenList = $stencilWindow.DOMTokenList;
var Element = $stencilWindow.Element;
var Event = $stencilWindow.Event;
var Headers = $stencilWindow.Headers;
var HTMLAnchorElement = $stencilWindow.HTMLAnchorElement;
var HTMLBaseElement = $stencilWindow.HTMLBaseElement;
var HTMLButtonElement = $stencilWindow.HTMLButtonElement;
var HTMLCanvasElement = $stencilWindow.HTMLCanvasElement;
var HTMLElement = $stencilWindow.HTMLElement;
var HTMLFormElement = $stencilWindow.HTMLFormElement;
var HTMLImageElement = $stencilWindow.HTMLImageElement;
var HTMLInputElement = $stencilWindow.HTMLInputElement;
var HTMLLinkElement = $stencilWindow.HTMLLinkElement;
var HTMLMetaElement = $stencilWindow.HTMLMetaElement;
var HTMLScriptElement = $stencilWindow.HTMLScriptElement;
var HTMLStyleElement = $stencilWindow.HTMLStyleElement;
var HTMLTemplateElement = $stencilWindow.HTMLTemplateElement;
var HTMLTitleElement = $stencilWindow.HTMLTitleElement;
var IntersectionObserver = $stencilWindow.IntersectionObserver;
var KeyboardEvent = $stencilWindow.KeyboardEvent;
var MouseEvent = $stencilWindow.MouseEvent;
var Node = $stencilWindow.Node;
var NodeList = $stencilWindow.NodeList;
var Request = $stencilWindow.Request;
var Response = $stencilWindow.Response;
var URL = $stencilWindow.URL;
var console = $stencilWindow.console;
Expand Down

0 comments on commit 16de872

Please sign in to comment.