blob: a73be8344065bbb0a5c5c547d2881d5439214952 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 );
};
|