Lines Matching refs:width

153 		'width': options.style.width || '',
793 targetWidth = BROWSER.iOS ? window.innerWidth : target.width();
823 targetWidth = pluginCalculations.width;
994 width = this.tooltip.css('width'),
1037 if(!width) { tooltip.css('width', tooltip.outerWidth(FALSE)); }
1039 if(!width) { tooltip.css('width', ''); }
1958 width: FALSE, property in QTIP.defaults.style
2048 this.size = [ options.width, options.height ];
2088 this.size[1] = this.options.width;
2091 this.size[0] = this.options.width;
2168 width = this.options['width'],
2171 base = (y ? width: height) * (isCenter ? 0.5 : 1),
2185 result = [ round(ratio * width), round(ratio * height) ];
2194 var width = size[0] * scale,
2196 width2 = Math.ceil(width / 2), height2 = Math.ceil(height / 2),
2200 br: [0,0, width,height, width,0],
2201 bl: [0,0, width,0, 0,height],
2202 tr: [0,height, width,0, width,height],
2203 tl: [0,0, 0,height, width,height],
2204 tc: [0,height, width2,0, width,height],
2205 bc: [0,0, width,0, width2,height],
2206 rc: [0,0, width,height2, 0,height],
2207 lc: [width,0, width,height, 0,height2]
2302 width: newSize[0],
2367 width: newSize[0] + border,
2574 this.size = [ obj.width, obj.height ];
2591 width: 6,
2959 viewportWidth = viewport[0] === window ? viewport.width() : viewport.outerWidth(FALSE);
3048 width: 0, height: 0, property in PLUGINS.polys.polygon.result
3074 newWidth = result.width = Math.abs(result.position.right - result.position.left);
3080 left: result.position.left + (result.width / 2),
3092 else if(corner.x === RIGHT){ compareX = result.width - newWidth; }
3108 (corner.x === CENTER && (realX < compareX || realX > (result.width - compareX))) ||
3124 width: Math.abs(bx - ax),
3144 width: (rx * 2) - Math.abs(rxc),
3173 rootWidth = root.attr('width') || root.width() || parseInt(root.css('width'), 10);
3217 width: result.width, height: result.height, property in result
3246 if(root.viewBox && (viewBox = root.viewBox.baseVal) && viewBox.width && viewBox.height) {
3247 xScale *= rootWidth / viewBox.width;
3291 imageOffset.left += Math.ceil((image.outerWidth(FALSE) - image.width()) / 2);
3350 width: tooltip.outerWidth(FALSE) property in AnonymousFunction67a4f05f5600.dimensions
3377 perc, width, max, min;
3384 if(style.width) { tooltip.css(WIDTH, style.width); }
3392 width = tooltip.width();
3393 if(width % 2 < 1) { width += 1; }
3400 perc = (max + min).indexOf('%') > -1 ? container.width() / 100 : 0;
3401 max = ((max.indexOf('%') > -1 ? perc : 1) * parseInt(max, 10)) || width;
3405 width = max + min ? Math.min(Math.max(width, min), max) : width;
3408 tooltip.css(WIDTH, Math.round(width)).appendTo(container);