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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/iron-behaviors/demo/simple-button-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: rerun reproduce.sh Created 5 years, 7 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 Polymer({
4
5 behaviors: [
6 Polymer.IronControlState,
7 Polymer.IronButtonState
8 ],
9
10 ready: function() {
11 if (!this.hasAttribute('role')) {
12 this.setAttribute('role', 'button');
13 }
14 }
15
16 });
17
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698