todo/public/vendor/jvectormap/lib/vml-group-element.js
Supan Adit Pratama 35d8715ab4 first commit
2020-06-23 11:40:37 +07:00

13 lines
340 B
JavaScript
Executable File
Vendored

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 );
};