(model, style)
| 226 | } |
| 227 | |
| 228 | unselected_style_updated(model, style) { |
| 229 | this.unselected_style = style; |
| 230 | |
| 231 | const unselectedIndices = this.selected_indices |
| 232 | ? _.range(this.model.mark_data.length).filter((index) => { |
| 233 | return this.selected_indices.indexOf(index) == -1; |
| 234 | }) |
| 235 | : []; |
| 236 | this.style_updated(style, unselectedIndices); |
| 237 | } |
| 238 | |
| 239 | //FIXME: should use the selected_style logic |
| 240 | private updateSelectedColors(selected_indices) { |
nothing calls this directly
no test coverage detected