AdminLTE/bower_components/jvectormap/lib/svg-group-element.js
Abdullah Almsaeed b50004f17c Fix #1616
2018-07-15 11:11:21 -04: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 );
};