blob: 2ba11e8996f7503fffa3126535d6114772a5fe0b (
plain)
1
2
3
4
5
6
7
8
9
10
|
SVG.Defs = function Defs() {
this.constructor.call(this, SVG.create('defs'));
};
// inherit from SVG.Element
SVG.Defs.prototype = new SVG.Element();
// include the container object
SVG.extend(SVG.Defs, SVG.Container);
|