- from 2.4.5 to 2.4.18 (cannot detect any issues) - set default scancycle for Apple Devices to 1
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
jvm.SVGGroupElement = function(){
|
|
jvm.SVGGroupElement.parentClass.call(this, 'g');
|
|
}
|
|
|
|
jvm.inherits(jvm.SVGGroupElement, jvm.SVGElement);
|
|
|
|
jvm.SVGGroupElement.prototype.add = function(element){
|
|
this.node.appendChild( element.node );
|
|
}; |