Lines Matching refs:info
197 * <a href="Resize.html#property_info">info</a> to respect the
213 info = host.info,
218 point1 = info[axis] + info[offset];
222 info[offset] -= (point1 - point1Constrain);
225 point2 = info[axis];
229 info[axis] += (point2Constrain - point2);
230 info[offset] -= (point2Constrain - point2);
236 * Update the current values on <a href="Resize.html#property_info">info</a>
245 info = host.info,
251 if (info.offsetHeight > maxHeight) {
255 if (info.offsetHeight < minHeight) {
261 * Update the current values on <a href="Resize.html#property_info">info</a>
270 info = host.info,
278 // wRatio/hRatio functions keep the ratio information always synced with the current info information
281 return (info.offsetWidth/oWidth);
284 return (info.offsetHeight/oHeight);
320 info.offsetWidth = oWidth*hRatio();
322 info.offsetHeight = oHeight*wRatio();
325 info.offsetHeight = oHeight*wRatio();
327 info.offsetWidth = oWidth*hRatio();
333 info.top = oTop + (oHeight - info.offsetHeight);
339 info.left = oLeft + (oWidth - info.offsetWidth);
343 Y.each(info, function(value, key) {
345 info[key] = Math.round(value);
362 return Y.DOM.inRegion(null, region, true, host.info);
366 * Update the current values on <a href="Resize.html#property_info">info</a>
375 info = host.info,
381 if (info.offsetWidth < minWidth) {
385 if (info.offsetWidth > maxWidth) {
436 host.info = host.lastInfo;