mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
- from 2.4.5 to 2.4.18 (cannot detect any issues) - set default scancycle for Apple Devices to 1
13 lines
340 B
JavaScript
13 lines
340 B
JavaScript
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 );
|
|
}; |