(button)
| 223 | IconButton($, { top:0, variant:5, active:true, visible:false, |
| 224 | Behavior: class extends ButtonBehavior { |
| 225 | onBubblesChanged(button) { |
| 226 | button.active = model.canClearAllBubbles(); |
| 227 | this.changeState(button, button.active ? 1 : 0); |
| 228 | } |
| 229 | onTap(button) { |
| 230 | model.doClearAllBubbles(); |
| 231 | } |
nothing calls this directly
no test coverage detected