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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-fab/paper-fab-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-fab', 3 is: 'paper-fab',
3 4
4 behaviors: [ 5 behaviors: [
5 Polymer.PaperButtonBehavior 6 Polymer.PaperButtonBehavior
6 ], 7 ],
7 8
8 properties: { 9 properties: {
9 /** 10 /**
10 * The URL of an image for the icon. If the src property is specified, 11 * The URL of an image for the icon. If the src property is specified,
11 * the icon property should not be. 12 * the icon property should not be.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 }, 49 },
49 50
50 _computeContentClass: function(receivedFocusFromKeyboard) { 51 _computeContentClass: function(receivedFocusFromKeyboard) {
51 var className = 'content'; 52 var className = 'content';
52 if (receivedFocusFromKeyboard) { 53 if (receivedFocusFromKeyboard) {
53 className += ' keyboard-focus'; 54 className += ' keyboard-focus';
54 } 55 }
55 return className; 56 return className;
56 } 57 }
57 58
58 }); 59 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698