Files
crew_admin/public/bower_components/jvectormap/lib/svg-group-element.js
Frank John Begornia d225ff22d4 initial commit
2019-10-29 19:29:28 +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 );
};