()
| 906 | } |
| 907 | |
| 908 | past_border_x() { |
| 909 | if (this.x_direction == 1) { |
| 910 | return this.prev_x + 1 < this.num_cols; |
| 911 | } else { |
| 912 | return this.prev_x - 1 > -1; |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | colors_updated() { |
| 917 | this.colors = this.model.get('colors'); |
no outgoing calls
no test coverage detected