mirror of
https://github.com/supanadit/todo.git
synced 2024-11-10 09:52:19 +00:00
13 lines
340 B
JavaScript
Executable File
Vendored
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 );
|
|
}; |