Update yoob.js to 0.7-2015.0108.
Chris Pressey
9 years ago
0 | 0 | /* |
1 | * This file is part of yoob.js version 0.7 | |
1 | * This file is part of yoob.js version 0.7-2015.0108 | |
2 | 2 | * Available from https://github.com/catseye/yoob.js/ |
3 | 3 | * This file is in the public domain. See http://unlicense.org/ for details. |
4 | 4 | */ |
194 | 194 | if (this.controls.start) this.controls.start.disabled = false; |
195 | 195 | if (this.controls.step) this.controls.step.disabled = false; |
196 | 196 | if (this.controls.stop) this.controls.stop.disabled = true; |
197 | if (this.controls.reset) this.controls.reset.disabled = false; | |
197 | 198 | if (this.display) this.display.style.display = "block"; |
198 | 199 | if (this.source) this.source.style.display = "none"; |
199 | 200 | }; |
259 | 260 | if (this.controls.start) this.controls.start.disabled = true; |
260 | 261 | if (this.controls.step) this.controls.step.disabled = true; |
261 | 262 | if (this.controls.stop) this.controls.stop.disabled = true; |
263 | if (this.controls.reset) this.controls.reset.disabled = true; | |
262 | 264 | if (this.display) this.display.style.display = "none"; |
263 | 265 | if (this.source) this.source.style.display = "block"; |
264 | 266 | }; |