()
| 1121 | } |
| 1122 | |
| 1123 | prev() { |
| 1124 | if (this.selected_layer) { |
| 1125 | let l = this.selected_layer; |
| 1126 | if (l instanceof MoveableLayer) { |
| 1127 | let i = l.nearest_anchor(this.time, false); |
| 1128 | if (i >= 0) { |
| 1129 | this.time = l.getTime(i); |
| 1130 | return; |
| 1131 | } |
| 1132 | } |
| 1133 | } |
| 1134 | this.time = Math.max(this.time - 100, 0); |
| 1135 | } |
| 1136 | |
| 1137 | next() { |
| 1138 | if (this.selected_layer) { |
no test coverage detected