You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ahref="https://twitter.com/intent/follow?screen_name=polymer" data-twitter-followtitle="Follow @polymer on Twitter"><paper-buttonicon="social:post-twitter"label="@polymer"></paper-button></a>
<ahref="https://twitter.com/intent/follow?screen_name=polymer" data-twitter-followtitle="Follow @polymer on Twitter"><paper-button><core-iconicon="social:post-twitter"></core-icon>@polymer</paper-button></a>
<p>{{site.project_title}}'s core elements are a set of visual and non-visual utility elements. They include elements for working with layout, user input, selection, and scaffolding apps.</p>
<p>{{site.project_title}}'s paper elements collection implements material design for the web. They're a set of highly visual, highly interactive elements that include things like controls, layouts, hero transitions, and scrolling effects.</p>
Copy file name to clipboardExpand all lines: docs/polymer/debugging.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,8 +120,8 @@ To quickly check whether elements are registered, you can use this bookmarklet (
120
120
121
121
The bookmarklet checks for element that look like custom elements, but have the generic `HTMLElement` constructor. An element "looks like" a custom element if it has a dash in its name or uses the `is` attribute:
122
122
123
-
<paper-button></paper-button>
124
-
<form is="ajax-form></form>
123
+
<paper-button>Button</paper-button>
124
+
<form is="ajax-form"></form>
125
125
126
126
Since this method doesn't use any Polymer APIs, it works for any custom element, Polymer or otherwise.
Copy file name to clipboardExpand all lines: docs/start/creatingelements.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -198,11 +198,11 @@ The use of the `id` attribute has traditionally been discouraged as an anti-patt
198
198
Now that you know how to create your own elements, dive deeper and read up on [{{site.project_title}}'s core API](/docs/polymer/polymer.html). If you'd like to know more about the underlying technologies that make {{site.project_title}} and Web Components possible, check out [the Platform guide](/docs/start/platform.html). Continue on to:
0 commit comments