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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tab-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 Polymer({
2 2
3 Polymer({
4
5 is: 'paper-tab', 3 is: 'paper-tab',
6 4
7 behaviors: [ 5 behaviors: [
8 Polymer.IronControlState 6 Polymer.IronControlState
9 ], 7 ],
10 8
11 properties: { 9 properties: {
12 10
13 /** 11 /**
14 * If true, ink ripple effect is disabled. 12 * If true, ink ripple effect is disabled.
(...skipping 16 matching lines...) Expand all
31 }, 29 },
32 30
33 get _parentNoink () { 31 get _parentNoink () {
34 var parent = Polymer.dom(this).parentNode; 32 var parent = Polymer.dom(this).parentNode;
35 return !!parent && !!parent.noink; 33 return !!parent && !!parent.noink;
36 }, 34 },
37 35
38 _onDown: function(e) { 36 _onDown: function(e) {
39 this.noink = !!this.noink || !!this._parentNoink; 37 this.noink = !!this.noink || !!this._parentNoink;
40 } 38 }
41 }); 39 });
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698