openpdu/static/bower_components/jvectormap/lib/svg-group-element.js

9 lines
238 B
JavaScript
Raw Normal View History

2020-12-23 09:11:11 +00:00
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 );
};