12345678910111213141516 |
- jvm.VectorCanvas = function(container, width, height) {
- this.mode = window.SVGAngle ? 'svg' : 'vml';
- if (this.mode == 'svg') {
- this.impl = new jvm.SVGCanvasElement(container, width, height);
- } else {
- this.impl = new jvm.VMLCanvasElement(container, width, height);
- }
- return this.impl;
- };
|