* @function TimeControlBase.prototype.toggle * @description 开关切换,切换的是开始和暂停。
()
| 200 | * @description 开关切换,切换的是开始和暂停。 |
| 201 | */ |
| 202 | toggle() { |
| 203 | var me = this; |
| 204 | |
| 205 | if (me.running) { |
| 206 | me.pause(); |
| 207 | } else { |
| 208 | me.start(); |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | |
| 213 | /** |
no test coverage detected