todo/public/vendor/jvectormap/lib/svg-group-element.js
Supan Adit Pratama 35d8715ab4 first commit
2020-06-23 11:40:37 +07:00

9 lines
238 B
JavaScript
Executable File
Vendored

jvm.SVGGroupElement = function(){
jvm.SVGGroupElement.parentClass.call(this, 'g');
}
jvm.inherits(jvm.SVGGroupElement, jvm.SVGElement);
jvm.SVGGroupElement.prototype.add = function(element){
this.node.appendChild( element.node );
};