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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-tooltip/paper-tooltip-extracted.js

Issue 1351623008: MD Settings: Languages model for language pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SingletonPrefs
Patch Set: Created 5 years, 3 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 Polymer({ 1
2 Polymer({
2 is: 'paper-tooltip', 3 is: 'paper-tooltip',
3 4
4 hostAttributes: { 5 hostAttributes: {
5 role: 'tooltip', 6 role: 'tooltip',
6 tabindex: -1 7 tabindex: -1
7 }, 8 },
8 9
9 behaviors: [ 10 behaviors: [
10 Polymer.NeonAnimationRunnerBehavior 11 Polymer.NeonAnimationRunnerBehavior
11 ], 12 ],
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 this.style.top = tooltipTop + 'px'; 215 this.style.top = tooltipTop + 'px';
215 } 216 }
216 217
217 }, 218 },
218 219
219 _onAnimationFinish: function() { 220 _onAnimationFinish: function() {
220 if (!this._showing) { 221 if (!this._showing) {
221 this.toggleClass('hidden', true, this.$.tooltip); 222 this.toggleClass('hidden', true, this.$.tooltip);
222 } 223 }
223 }, 224 },
224 }); 225 });
226
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698