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

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

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake Created 5 years, 6 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
2 2
3 /** @polymerBehavior */ 3 /** @polymerBehavior */
4 Polymer.PaperRadioButtonInk = { 4 Polymer.PaperRadioButtonInk = {
5 5
6 observers: [ 6 observers: [
7 '_focusedChanged(receivedFocusFromKeyboard)' 7 '_focusedChanged(receivedFocusFromKeyboard)'
8 ], 8 ],
9 9
10 _focusedChanged: function(receivedFocusFromKeyboard) { 10 _focusedChanged: function(receivedFocusFromKeyboard) {
11 if (!this.$.ink) { 11 if (!this.$.ink) {
12 return; 12 return;
13 } 13 }
14 14
15 this.$.ink.holdDown = receivedFocusFromKeyboard; 15 this.$.ink.holdDown = receivedFocusFromKeyboard;
16 } 16 }
17 17
18 }; 18 };
19 19
20 /** @polymerBehavior */ 20 /** @polymerBehavior */
21 Polymer.PaperRadioButtonBehavior = [ 21 Polymer.PaperRadioButtonBehavior = [
22 Polymer.IronButtonState, 22 Polymer.IronButtonState,
23 Polymer.IronControlState, 23 Polymer.IronControlState,
24 Polymer.PaperRadioButtonInk 24 Polymer.PaperRadioButtonInk
25 ]; 25 ];
26 26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698