1
0
Fork 0
mirror of https://github.com/JonnyBro/JaBa.git synced 2025-03-05 14:39:39 +05:00
JaBa/dashboard/public/bower_components/jvectormap/lib/svg-group-element.js
2022-01-04 02:18:28 +05:00

9 lines
No EOL
238 B
JavaScript

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 );
};