Lines Matching refs:info
199 * <a href="Resize.html#property_info">info</a> to respect the
215 info = host.info,
220 point1 = info[axis] + info[offset];
224 info[offset] -= (point1 - point1Constrain);
227 point2 = info[axis];
231 info[axis] += (point2Constrain - point2);
232 info[offset] -= (point2Constrain - point2);
238 * Update the current values on <a href="Resize.html#property_info">info</a>
247 info = host.info,
253 if (info.offsetHeight > maxHeight) {
257 if (info.offsetHeight < minHeight) {
263 * Update the current values on <a href="Resize.html#property_info">info</a>
272 info = host.info,
280 // wRatio/hRatio functions keep the ratio information always synced with the current info information
283 return (info.offsetWidth/oWidth);
286 return (info.offsetHeight/oHeight);
322 info.offsetWidth = oWidth*hRatio();
324 info.offsetHeight = oHeight*wRatio();
327 info.offsetHeight = oHeight*wRatio();
329 info.offsetWidth = oWidth*hRatio();
335 info.top = oTop + (oHeight - info.offsetHeight);
341 info.left = oLeft + (oWidth - info.offsetWidth);
345 Y.each(info, function(value, key) {
347 info[key] = Math.round(value);
364 return Y.DOM.inRegion(null, region, true, host.info);
368 * Update the current values on <a href="Resize.html#property_info">info</a>
377 info = host.info,
383 if (info.offsetWidth < minWidth) {
387 if (info.offsetWidth > maxWidth) {
438 host.info = host.lastInfo;