openpdu/static/bower_components/jvectormap/lib/vml-group-element.js

13 lines
340 B
JavaScript
Raw Normal View History

2020-12-23 09:11:11 +00:00
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 );
};