From 56828e43b6d998c9d399406737cb5f412cd46742 Mon Sep 17 00:00:00 2001 From: Andrew Seguin Date: Tue, 1 May 2018 14:48:21 -0700 Subject: [PATCH] docs(elements): add intro connecting angular elements to custom elements (#23638) PR Close #23638 --- aio/content/guide/elements.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aio/content/guide/elements.md b/aio/content/guide/elements.md index 33c842716b..2a8c78de0a 100644 --- a/aio/content/guide/elements.md +++ b/aio/content/guide/elements.md @@ -1,5 +1,7 @@ # Angular Elements Overview +Angular Elements are Angular components packaged as custom elements, a web standard for defining new html elements in a framework-agnostic way. + [Custom elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) are a Web Platform feature currently supported by Chrome, Opera, and Safari, and available in other browsers through polyfills (see [Browser Support](#browser-support)). A custom element extends HTML by allowing you to define a tag whose content is created and controlled by JavaScript code. The browser maintains a `CustomElementRegistry` of defined custom elements (also called Web Components), which maps an instantiable JavaScript class to an HTML tag.