html2canvas/src/webkitgradientcontainer.js
2014-02-01 21:48:30 +02:00

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);