mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
7 lines
265 B
JavaScript
7 lines
265 B
JavaScript
function WebkitGradientContainer(imageData) {
|
|
GradientContainer.apply(this, arguments);
|
|
this.type = (imageData.args[0] === "linear") ? this.TYPES.LINEAR : this.TYPES.RADIAL;
|
|
}
|
|
|
|
WebkitGradientContainer.prototype = Object.create(GradientContainer.prototype);
|