Files
crew_admin/public/bower_components/jvectormap/lib/svg-path-element.js
Frank John Begornia d225ff22d4 initial commit
2019-10-29 19:29:28 +08:00

6 lines
221 B
JavaScript

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