Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 -- Use of this source code is governed by a BSD-style license that can be | 2 -- Use of this source code is governed by a BSD-style license that can be |
| 3 -- found in the LICENSE file. | 3 -- found in the LICENSE file. |
| 4 --> | 4 --> |
| 5 | 5 |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 7 <link rel="import" href="chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/for eground/elements/files_toggle_ripple.html"> | 7 <link rel="import" href="chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/for eground/elements/files_icon_button.html"> |
| 8 | 8 |
| 9 <dom-module id="repeat-button"> | 9 <dom-module id="repeat-button"> |
| 10 <link rel="import" type="css" href="repeat_button.css"> | 10 <link rel="import" type="css" href="repeat_button.css"> |
| 11 <template> | 11 <template> |
| 12 <files-toggle-ripple activated="[[isActive(repeatMode)]]" class$="{{repeatMo de}}"></files-toggle-ripple> | 12 <files-icon-button active="[[isActive(repeatMode)]]" |
| 13 repeat-mode$="{{repeatMode}}" toggles> | |
|
fukino
2016/11/10 08:30:19
What is the intention to change "class$=" to "repe
yamaguchi
2016/11/10 08:43:16
To avoid that keyboard focus indicator disappears
fukino
2016/11/10 09:28:32
I see.
Since the repeatMode's refrectToAttribute i
| |
| 14 </files-icon-button> | |
| 13 </template> | 15 </template> |
| 14 | 16 |
| 15 <script src="repeat_button.js"></script> | 17 <script src="repeat_button.js"></script> |
| 16 </dom-module> | 18 </dom-module> |
| OLD | NEW |