Files
crew_admin/public/bower_components/jvectormap/lib/vml-group-element.js
Frank John Begornia d225ff22d4 initial commit
2019-10-29 19:29:28 +08:00

13 lines
340 B
JavaScript

jvm.VMLGroupElement = function(){
jvm.VMLGroupElement.parentClass.call(this, 'group');
this.node.style.left = '0px';
this.node.style.top = '0px';
this.node.coordorigin = "0 0";
};
jvm.inherits(jvm.VMLGroupElement, jvm.VMLElement);
jvm.VMLGroupElement.prototype.add = function(element){
this.node.appendChild( element.node );
};