(container, state)
| 77 | |
| 78 | class TabBehavior extends Behavior { |
| 79 | changeState(container, state) { |
| 80 | container.state = state; |
| 81 | var content = container.first.first; |
| 82 | while (content) { |
| 83 | content.state = state; |
| 84 | content = content.next; |
| 85 | } |
| 86 | } |
| 87 | isSelected(container) { |
| 88 | return false; |
| 89 | } |
no outgoing calls
no test coverage detected