short-url/public/vendor/jvectormap/lib/svg-group-element.js
Supan Adit Pratama b2e434483d first commit
2020-07-01 15:57:45 +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 );
};