()
| 23 | rrun = /queueHooks$/; |
| 24 | |
| 25 | function schedule() { |
| 26 | if ( inProgress ) { |
| 27 | if ( document.hidden === false && window.requestAnimationFrame ) { |
| 28 | window.requestAnimationFrame( schedule ); |
| 29 | } else { |
| 30 | window.setTimeout( schedule, 13 ); |
| 31 | } |
| 32 | |
| 33 | jQuery.fx.tick(); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | // Animations created synchronously will run synchronously |
| 38 | function createFxNow() { |