forked from OpenPDU/openpdu
first mockup in go
This commit is contained in:
13
static/bower_components/jvectormap/lib/vml-group-element.js
vendored
Normal file
13
static/bower_components/jvectormap/lib/vml-group-element.js
vendored
Normal file
@@ -0,0 +1,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 );
|
||||
};
|
||||
Reference in New Issue
Block a user