Lines Matching refs:h

2565 			    var h = today.getHours();
2569 return y + "-" + m + "-" + d + "-" + h + "-" + mi + "-" + s;
3340 var entry = {xml: xml, w: bounds.width, h: bounds.height}; property in EditorUi.libraryLoaded.AnonymousFunction393e60862c00.entry
3464 …0, 0, this.maxImageSize, mxUtils.bind(this, function(data, mimeType, x, y, w, h, img, doneFn, file) argument
3470 var cells = [new mxCell('', new mxGeometry(0, 0, w, h), style)];
3473 …addCells(cells, new mxRectangle(0, 0, w, h), evt, (mxEvent.isAltDown(evt)) ? null : img.substring(…
3667 data, img.w, img.h, '', img.title || '', false, false, true));
3676 cells, img.w, img.h, img.title || '', true, false, true));
6486 var h = parseInt(svgRoot.getAttribute('height'));
6487 svgRoot.setAttribute('viewBox', '-0.5 -0.5 ' + w + ' ' + h);
6488 css += 'max-width:100%;max-height:' + h + 'px;';
7562 var h = parseFloat(svgs[0].getAttribute('height'));
7564 if (isNaN(w) || isNaN(h))
7570 h = parseFloat(viewBox[3]);
7576 h = h || 100;
7580 success(ui.convertDataUri(Editor.createSvgDataUri(svg)), w, h);
7737 var h = img.height;
7740 if (w == 0 && h == 0)
7751 h = parseFloat(svgs[0].getAttribute('height'));
7755 success(reader.result, w, h);
7909 var h = Math.round(img.height * s);
7912 w, h, 'shape=image;verticalLabelPosition=bottom;labelBackgroundColor=#ffffff;' +
9601 …s.importFiles(evt.dataTransfer.files, 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument
9604 graph.insertImage(data, w, h);
9630 var h = Math.max(1, img.height);
9633 var s = Math.min(1, Math.min(maxSize / Math.max(1, w)), maxSize / Math.max(1, h));
9634 graph.insertImage(decodeURIComponent(uri), w * s, h * s);
9906 var h = Math.max(1, img.height);
9909 var s = Math.min(1, Math.min(maxSize / Math.max(1, w)), maxSize / Math.max(1, h));
9911 graph.setSelectionCell(graph.insertVertex(null, null, '', x, y, w * s, h * s,
9985 … this.importFiles([item.getAsFile()], 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument
9988 graph.insertImage(data, w, h);
10560 var h = parseInt(svgRoot.getAttribute('height'));
10561 this.writeImageToClipboard(dataUrl, w, h, mxUtils.bind(this, function(e)
10590 EditorUi.prototype.writeImageToClipboard = function(dataUrl, w, h, error) argument
10593 var html = '<img src="' + dataUrl + '" width="' + w + '" height="' + h + '">';
11068 var h = 0;
11076 h = Math.max(b.clientHeight || 0, d.clientHeight) - 3;
11083 h = elt.clientHeight;
11094 hl.style.height = Math.max(0, h - 3) + 'px';
13910 var h = Math.floor(bounds.height * s / graph.view.scale);
13912 if (data.length <= MAX_REQUEST_SIZE && w * h < MAX_AREA)
13949 '&bg=' + ((bg != null) ? bg : 'none') + '&w=' + w + '&h=' + h +
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);