MCPcopy
hub / github.com/ampproject/amphtml / runContinuing_

Method runContinuing_

src/motion.js:199–207  ·  view source on GitHub ↗

* @return {!Promise} * @private

()

Source from the content-addressed store, hash-verified

197 * @private
198 */
199 runContinuing_() {
200 this.velocityX_ = this.maxVelocityX_;
201 this.velocityY_ = this.maxVelocityY_;
202 const boundStep = this.stepContinue_.bind(this);
203 const boundComplete = this.completeContinue_.bind(this, true);
204 return this.vsync_
205 .runAnimMutateSeries(this.contextNode_, boundStep, 5000)
206 .then(boundComplete, boundComplete);
207 }
208
209 /**
210 * Returns "true" to continue and "false" to stop motion process.

Callers 1

startMethod · 0.95

Calls 2

runAnimMutateSeriesMethod · 0.80
thenMethod · 0.45

Tested by

no test coverage detected