Lines Matching refs:container

46     var container = document.createElement('div');
47 container.style.position = 'absolute';
53 container.style.top = (diagCont.offsetTop - RULER_THICKNESS) + 'px';
54 container.style.left = (diagCont.offsetLeft - RULER_THICKNESS) + 'px';
55 container.style.width = ((isVertical? 0 : diagCont.offsetWidth) + RULER_THICKNESS) + 'px';
56 container.style.height = ((isVertical? diagCont.offsetHeight : 0) + RULER_THICKNESS) + 'px';
78 container.style.background = style.bkgClr;
79 container.style[isVertical? 'borderRight' : 'borderBottom'] = '0.5px solid ' + style.strokeClr;
80 container.style.borderLeft = '0.5px solid ' + style.strokeClr;
85 document.body.appendChild(container);
86 mxEvent.disableContextMenu(container);
101 canvas.width = container.offsetWidth;
102 canvas.height = container.offsetHeight;
103 container.style.overflow = 'hidden';
105 container.appendChild(canvas);
111 this.container = container;
158 …? RULER_THICKNESS + (isVertical? bgPages.y - graph.container.scrollTop : bgPages.x - graph.contai…
159 …ULER_THICKNESS + (isVertical? t.y * scale - graph.container.scrollTop : t.x * scale - graph.conta…
318 var div = graph.container;
327 container.style.height = newH + 'px';
338 container.style.width = newW + 'px';
356 var newScroll = isVertical? graph.container.scrollTop : graph.container.scrollLeft;
372 graph.container.addEventListener('scroll', efficientScrollListener);
402 container.style.background = style.bkgClr;
441 y1 = bounds.y + ret.y + RULER_THICKNESS - this.graph.container.scrollTop;
460 x1 = bounds.x + ret.x + RULER_THICKNESS - this.graph.container.scrollLeft;
559 this.graph.container.removeEventListener('scroll', this.scrollListener);
565 if (this.container != null)
567 this.container.parentNode.removeChild(this.container);
637 installMenu(this.hRuler.container);
638 installMenu(this.vRuler.container);