mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
340 B
13 lines
340 B
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 );
|
|
}; |