Lines Matching refs:img

171 					var img = new Image();
172img.src = logDomain + '/log?severity=' + severity + '&v=' + encodeURIComponent(EditorUi.VERSION) +
211 var img = new Image();
212 img.src = logDomain + '/images/1x1.png?' +
497 var img = new Image(); variable
500 img.onload = function()
505 ctx.drawImage(img, 0, 0);
519 img.src = 'data:image/svg+xml;base64,' + btoa(unescape(encodeURIComponent(svg)));
3464 …0, 0, this.maxImageSize, mxUtils.bind(this, function(data, mimeType, x, y, w, h, img, doneFn, file) argument
3473 …w mxRectangle(0, 0, w, h), evt, (mxEvent.isAltDown(evt)) ? null : img.substring(0, img.lastIndexOf…
3556 …if (file != null && img != null && ((/(\.v(dx|sdx?))($|\?)/i.test(img)) || /(\.vs(x|sx?))($|\?)/i.…
3561 }, null, img);
3563 …s.isOffline() && new XMLHttpRequest().upload && this.isRemoteFileFormat(data, img) && file != null)
3653 var img = imgs[i];
3654 var data = img.data;
3661 if (img.aspect == 'fixed')
3667 data, img.w, img.h, '', img.title || '', false, false, true));
3669 else if (img.xml != null)
3671 var cells = this.stringToCells(Graph.decompress(img.xml));
3676 cells, img.w, img.h, img.title || '', true, false, true));
3776 EditorUi.prototype.showBackgroundImageDialog = function(apply, img) argument
3788 var dlg = new BackgroundImageDialog(this, apply, img);
4191 var img = document.createElement('img');
4192 img.setAttribute('src', Dialog.prototype.closeImage);
4193 img.setAttribute('title', mxResources.get((doNotShowAgainOnClose) ? 'doNotShowAgain' : 'close'));
4194 img.setAttribute('border', '0');
4195img.style.cssText = 'position:absolute;right:10px;top:12px;filter:invert(1);padding:6px;margin:-6p…
4196 banner.appendChild(img);
4241 mxEvent.addListener(img, 'click', mxUtils.bind(this, function(e)
4906 var img = document.createElement('img');
4908 img.style.maxWidth = '140px';
4909 img.style.maxHeight = '140px';
4910 img.style.cursor = 'pointer';
4911 img.style.backgroundColor = 'white';
4913 img.setAttribute('title', mxResources.get('openInNewWindow'));
4914 img.setAttribute('border', '0');
4915 img.setAttribute('src', data);
4917 this.exportDialog.appendChild(img);
4919 mxEvent.addListener(img, 'click', mxUtils.bind(this, function()
7730 var img = new Image();
7732 img.onload = function()
7736 var w = img.width;
7737 var h = img.height;
7763 img.src = reader.result;
7894 this.loadImage(text, mxUtils.bind(this, function(img) argument
7898 this.resizeImage(img, text, mxUtils.bind(this, function(data2, w2, h2)
7907 var s = Math.min(1, Math.min(this.maxImageSize / img.width, this.maxImageSize / img.height));
7908 var w = Math.round(img.width * s);
7909 var h = Math.round(img.height * s);
8874 '<img style="margin-top:8px;" src="' + Editor.loResImage + '"/>',
8875 '<img style="margin-top:8px;" src="' + Editor.hiResImage + '"/>',
9627 this.loadImage(decodeURIComponent(uri), mxUtils.bind(this, function(img) argument
9629 var w = Math.max(1, img.width);
9630 var h = Math.max(1, img.height);
9903 this.loadImage(decodeURIComponent(uri), mxUtils.bind(this, function(img) argument
9905 var w = Math.max(1, img.width);
9906 var h = Math.max(1, img.height);
9914 }), mxUtils.bind(this, function(img) argument
15816 var img = document.createElement('img');
15817 img.setAttribute('src', imgSrc);
15818 p3.appendChild(img);