2 * `Polymer.PaperInkyFocusBehavior` implements a ripple when the element has keyboard focus.
4 * @polymerBehavior Polymer.PaperInkyFocusBehavior
6 Polymer.PaperInkyFocusBehaviorImpl = {
9 '_focusedChanged(receivedFocusFromKeyboard)'
12 _focusedChanged: function(receivedFocusFromKeyboard) {
17 this.$.ink.holdDown = receivedFocusFromKeyboard;
22 /** @polymerBehavior Polymer.PaperInkyFocusBehavior */
23 Polymer.PaperInkyFocusBehavior = [
24 Polymer.IronButtonState,
25 Polymer.IronControlState,
26 Polymer.PaperInkyFocusBehaviorImpl