(id:number)
| 117 | } |
| 118 | |
| 119 | public clearTimeout(id:number):void { |
| 120 | for (var i = 0; i < this._timers.length; i++) { |
| 121 | if (this._timers[i].type === 'timeout' && |
| 122 | this._timers[i].key === id) { |
| 123 | this._timers.splice(i, 1); |
| 124 | return; |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | public clearAll(type:String = 'all'):void { |
| 130 | if (type === 'timer') { |