Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: third_party/polymer/v0_8/components-chromium/paper-input/paper-input-error-extracted.js

Issue 1082403004: Import Polymer 0.8 and several key elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Also remove polymer/explainer Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1
2
3 (function() {
4
5 Polymer({
6
7 is: 'paper-input-error',
8
9 enableCustomStyleProperties: true,
10
11 hostAttributes: {
12 'add-on': '',
13 'role': 'alert'
14 },
15
16 properties: {
17
18 /**
19 * Set to true to show the error.
20 */
21 invalid: {
22 reflectToAttribute: true,
23 type: Boolean
24 }
25
26 },
27
28 attached: function() {
29 this.fire('addon-attached');
30 }
31
32 })
33
34 })();
35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698