Lines Matching refs:y

622 	EditorUi.prototype.createSpinner = function(x, y, size)  argument
624 var autoPosition = (x == null || y == null);
657 y = Math.max(document.body.clientHeight || 0, document.documentElement.clientHeight || 0) / 2;
673 status.style.top = Math.max(0, y + 70) + 'px';
1678 var y0 = Math.floor(bounds.y / scale - graph.view.translate.y);
2450 curr.y += val;
2561 var y = today.getFullYear();
2569 return y + "-" + m + "-" + d + "-" + h + "-" + mi + "-" + s;
3332 geo.translate(-bounds.x, -bounds.y);
3367 bounds.y /= s;
3372 bounds.y -= graph.view.translate.y;
3464 …es, 0, 0, this.maxImageSize, mxUtils.bind(this, function(data, mimeType, x, y, w, h, img, doneFn, … argument
7789 EditorUi.prototype.insertAsPreText = function(text, x, y) argument
7798 x, y, 1, 1, 'text;html=1;align=left;verticalAlign=top;');
9601 …s.importFiles(evt.dataTransfer.files, 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument
9795 var y = pt.y / scale - tr.y;
9808 y = null;
9811 this.importFiles(evt.dataTransfer.files, x, y, this.maxImageSize, null, null, null,
9820 y = 0;
9829 graph.setSelectionCells(this.importXml(data, x, y, true));
9884 graph.setSelectionCells(this.insertTextAt(html, x, y, true,
9911 graph.setSelectionCell(graph.insertVertex(null, null, '', x, y, w * s, h * s,
9916 graph.setSelectionCells(this.insertTextAt(uri, x, y, true));
9921 … graph.setSelectionCells(this.insertTextAt(evt.dataTransfer.getData('text/plain'), x, y, true));
9985 … this.importFiles([item.getAsFile()], 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument
10008 this.importFiles([item.getAsFile()], pt.x, pt.y, this.maxImageSize);
10726 cells = this.insertTextAt(xml, pt.x + dx, pt.y + dx, true);
11066 var y = 0;
11081 y = elt.offsetLeft;
11092 hl.style.left = y + 'px';
12918 var y0 = pt.y;
12919 var y = y0;
13137 var newCell = new mxCell(label, new mxGeometry(x0, y,
13222 cell.geometry.y = originY + parseFloat(cell.getAttribute(top));
13249 y += cell.geometry.height + nodespacing;
13358 var ely = (def.y != null) ? def.y : 0;
13438 geo.y = Math.round(graph.snap(geo.y));
15010 var CommentsWindow = function(editorUi, x, y, w, h, saveCallback) argument
15749 this.window = new mxWindow(mxResources.get('comments'), div, x, y, w, h, true, true);
15762 this.window.setLocation = function(x, y) argument
15768 y = Math.max(0, Math.min(y, ih - this.table.clientHeight - 48));
15770 if (this.getX() != x || this.getY() != y)
15779 var y = this.window.getY();
15781 this.window.setLocation(x, y);