| Index: third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox-extracted.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox-extracted.js b/third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox-extracted.js
|
| index c166e07b8d1ffab01926898eb97466b3e1371fa0..7907d202250acd67a1bee45f8faf14b7fb8b6fe7 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox-extracted.js
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-checkbox/paper-checkbox-extracted.js
|
| @@ -3,7 +3,7 @@
|
| is: 'paper-checkbox',
|
|
|
| behaviors: [
|
| - Polymer.PaperRadioButtonBehavior
|
| + Polymer.PaperInkyFocusBehavior
|
| ],
|
|
|
| hostAttributes: {
|
| @@ -76,12 +76,14 @@
|
| if (checked) {
|
| return 'checked';
|
| }
|
| + return '';
|
| },
|
|
|
| _computeCheckmarkClass: function(checked) {
|
| if (!checked) {
|
| return 'hidden';
|
| }
|
| + return '';
|
| }
|
| })
|
|
|
|
|