svg-path-element.js 221 B

123456
  1. jvm.SVGPathElement = function(config, style){
  2. jvm.SVGPathElement.parentClass.call(this, 'path', config, style);
  3. this.node.setAttribute('fill-rule', 'evenodd');
  4. }
  5. jvm.inherits(jvm.SVGPathElement, jvm.SVGShapeElement);