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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-behaviors/paper-button-behavior-extracted.js

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
1 1 /** @polymerBehavior */
2
3 /** @polymerBehavior */
4 Polymer.PaperButtonBehaviorImpl = { 2 Polymer.PaperButtonBehaviorImpl = {
5 3
6 properties: { 4 properties: {
7 5
8 _elevation: { 6 _elevation: {
9 type: Number 7 type: Number
10 } 8 }
11 9
12 }, 10 },
13 11
(...skipping 17 matching lines...) Expand all
31 } 29 }
32 this._elevation = e; 30 this._elevation = e;
33 } 31 }
34 }; 32 };
35 33
36 /** @polymerBehavior */ 34 /** @polymerBehavior */
37 Polymer.PaperButtonBehavior = [ 35 Polymer.PaperButtonBehavior = [
38 Polymer.IronButtonState, 36 Polymer.IronButtonState,
39 Polymer.IronControlState, 37 Polymer.IronControlState,
40 Polymer.PaperButtonBehaviorImpl 38 Polymer.PaperButtonBehaviorImpl
41 ]; 39 ];
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698