vml-group-element.js 340 B

12345678910111213
  1. jvm.VMLGroupElement = function(){
  2. jvm.VMLGroupElement.parentClass.call(this, 'group');
  3. this.node.style.left = '0px';
  4. this.node.style.top = '0px';
  5. this.node.coordorigin = "0 0";
  6. };
  7. jvm.inherits(jvm.VMLGroupElement, jvm.VMLElement);
  8. jvm.VMLGroupElement.prototype.add = function(element){
  9. this.node.appendChild( element.node );
  10. };