Lines Matching refs:info

348 			var info = instance.info,
351 info.offsetHeight = originalInfo.offsetHeight + dy;
355 var info = instance.info,
358 info.left = originalInfo.left + dx;
359 info.offsetWidth = originalInfo.offsetWidth - dx;
363 var info = instance.info,
366 info.offsetWidth = originalInfo.offsetWidth + dx;
370 var info = instance.info,
373 info.top = originalInfo.top + dy;
374 info.offsetHeight = originalInfo.offsetHeight - dy;
570 * @property info
574 info: null,
896 info = instance.info,
899 dx = info.actXY[0] - originalInfo.actXY[0],
900 dy = info.actXY[1] - originalInfo.actXY[1];
912 * <a href="Resize.html#property_info">info</a> to respect the
922 info = instance.info,
927 info[offset] = size;
934 info[axis] = originalInfo[axis] + originalInfo[offset] - size;
994 * <p>Generates metadata to the <a href="Resize.html#property_info">info</a>
1041 var info = {
1055 info.border[borderColorProperty] = getCompStyle(node, borderColorProperty);
1056 info.border[borderStyleProperty] = getCompStyle(node, borderStyleProperty);
1057 info.border[borderWidthProperty] = getCompStyle(node, borderWidthProperty);
1058 info.margin[marginProperty] = getCompStyle(node, marginProperty);
1059 info.padding[paddingProperty] = getCompStyle(node, paddingProperty);
1063 info.totalHBorder = (toRoundNumber(info.border.borderLeftWidth) + toRoundNumber(info.border.borderRightWidth));
1064 info.totalHPadding = (toRoundNumber(info.padding.paddingLeft) + toRoundNumber(info.padding.paddingRight));
1065 info.totalVBorder = (toRoundNumber(info.border.borderBottomWidth) + toRoundNumber(info.border.borderTopWidth));
1066 info.totalVPadding = (toRoundNumber(info.padding.paddingBottom) + toRoundNumber(info.padding.paddingTop));
1068 return info;
1073 * <a href="Resize.html#property_info">info</a>.
1080 info = instance.info,
1085 wrapper.sizeTo(info.offsetWidth, info.offsetHeight);
1088 wrapper.setXY([info.left, info.top]);
1095 info.offsetWidth - wrapperSurrounding.totalHBorder,
1096 info.offsetHeight - wrapperSurrounding.totalVBorder
1124 * Update <a href="Resize.html#property_info">info</a> values (bottom, actXY, left, top, offsetHeight, offsetWidth, right).
1132 instance.info = instance._getInfo(instance.get(WRAPPER), event);
1332 info,
1336 instance.lastInfo = instance.info;
1338 // update the instance.info values
1341 info = instance.info;
1351 if (info.offsetHeight <= defMinHeight) {
1355 if (info.offsetWidth <= defMinWidth) {
1443 this.fire(EV_MOUSE_UP, { dragEvent: event, info: this.info });
1454 this.fire(EV_RESIZE, { dragEvent: event, info: this.info });
1465 this.fire(EV_RESIZE_ALIGN, { dragEvent: event, info: this.info });
1476 this.fire(EV_RESIZE_END, { dragEvent: event, info: this.info });
1491 this.fire(EV_RESIZE_START, { dragEvent: event, info: this.info });