1 2 3 4 5 6 7 8 9 10 11 12
// ### The defs node // SVG.Defs = function Defs() { this.constructor.call(this, SVG.create('defs')); }; // Inherits from SVG.Element SVG.Defs.prototype = new SVG.Element(); // Include the container object SVG.extend(SVG.Defs, SVG.Container);