Lines Matching refs:img

75 		var img = new Image();
76 img.src = mxGraph.prototype.warningImage.src;
1961 var img = document.createElement('img');
1962 img.setAttribute('src', Dialog.prototype.closeImage);
1963 img.setAttribute('title', mxResources.get('close'));
1964 img.setAttribute('border', '0');
1965img.style.cssText = 'position:absolute;right:10px;top:12px;filter:invert(1);padding:6px;margin:-6p…
1966 banner.appendChild(img);
2037 mxEvent.addListener(img, 'click', mxUtils.bind(this, function(e)
2466 var img = new Image();
2467 img.src = bgImg.src;
2469 ctx.drawImage(img, bgImg.x * scale, bgImg.y * scale,
3702 var img = null;
3707 img = document.createElement('div');
3708 img.setAttribute('title', mxResources.get('language'));
3709 img.className = 'geIcon geSprite geSprite-globe';
3710 img.style.position = 'absolute';
3711 img.style.cursor = 'pointer';
3712 img.style.bottom = '20px';
3713 img.style.right = '20px';
3717 img.style.direction = 'rtl';
3718 img.style.textAlign = 'right';
3719 img.style.right = '24px';
3729 img.appendChild(label);
3732 mxEvent.addListener(img, 'click', mxUtils.bind(this, function(evt)
3748 var offset = mxUtils.getOffset(img);
3749 menu.popup(offset.x, offset.y + img.offsetHeight, null, evt);
3755 elt.appendChild(img);
3758 return img;
7154 var img = document.createElement('img');
7156 img.setAttribute('src', Dialog.prototype.closeImage);
7157 img.setAttribute('title', mxResources.get('close'));
7158 img.className = 'geDialogClose';
7159 img.style.top = '8px';
7160 img.style.right = '8px';
7162 mxEvent.addListener(img, 'click', mxUtils.bind(this, function()
7170 this.userPanel.appendChild(img);
7214 var img = document.createElement('img');
7215 img.setAttribute('width', '50');
7216 img.setAttribute('height', '50');
7217 img.setAttribute('border', '0');
7218img.setAttribute('src', (user.pictureUrl != null) ? user.pictureUrl : this.defaultUserPicture);
7219 img.style.borderRadius = '50%';
7220 img.style.margin = '4px 8px 0 8px';
7221 td.appendChild(img);
7376 var img = document.createElement('img');
7377 img.setAttribute('width', '40');
7378 img.setAttribute('height', '40');
7379 img.setAttribute('border', '0');
7380 img.setAttribute('src', logo);
7381 img.style.marginRight = '6px';
7383 td.appendChild(img);