(attributes, options)
| 59 | } |
| 60 | |
| 61 | initialize(attributes, options) { |
| 62 | super.initialize(attributes, options); |
| 63 | this.on_some_change(['row', 'column', 'color'], this.update_data, this); |
| 64 | this.on_some_change(['preserve_domain'], this.update_domains, this); |
| 65 | this.update_data(); |
| 66 | this.update_domains(); |
| 67 | } |
| 68 | |
| 69 | update_data() { |
| 70 | this.dirty = true; |
nothing calls this directly
no test coverage detected