()
| 280 | } |
| 281 | |
| 282 | function resume() { |
| 283 | if (state.mode !== "timer") { |
| 284 | $("abpVideo").play(); |
| 285 | return; |
| 286 | } |
| 287 | if (tmr !== -1) |
| 288 | return; |
| 289 | $("control-status").className = "status active"; |
| 290 | cm.start(); |
| 291 | start = new Date().getTime() - playhead; |
| 292 | tmr = setInterval(function() { |
| 293 | playhead = new Date().getTime() - start; |
| 294 | displayTime(playhead); |
| 295 | cm.time(playhead); |
| 296 | }, 42); |
| 297 | } |
| 298 | |
| 299 | /** Load **/ |
| 300 | window.loadDM = function(dmf, provider) { |