Files
sentcms/public/static/plugins/jvectormap/lib/svg-group-element.js
2019-09-01 22:53:06 +08: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 );
};