html2canvas/src/gradientcontainer.js

18 lines
348 B
JavaScript
Raw Normal View History

function GradientContainer(imageData) {
this.src = imageData.value;
this.colorStops = [];
this.type = null;
this.x0 = 0.5;
this.y0 = 0.5;
this.x1 = 0.5;
this.y1 = 0.5;
this.promise = Promise.resolve(true);
}
GradientContainer.prototype.TYPES = {
LINEAR: 1,
RADIAL: 2
};
2015-02-03 22:34:05 +03:00
module.exports = GradientContainer;