openpdu/static/bower_components/jvectormap/lib/svg-group-element.js
2020-12-23 10:11:11 +01:00

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