Lines Matching refs:info
350 var info = instance.info,
353 info.offsetHeight = originalInfo.offsetHeight + dy;
357 var info = instance.info,
360 info.left = originalInfo.left + dx;
361 info.offsetWidth = originalInfo.offsetWidth - dx;
365 var info = instance.info,
368 info.offsetWidth = originalInfo.offsetWidth + dx;
372 var info = instance.info,
375 info.top = originalInfo.top + dy;
376 info.offsetHeight = originalInfo.offsetHeight - dy;
572 * @property info
576 info: null,
898 info = instance.info,
901 dx = info.actXY[0] - originalInfo.actXY[0],
902 dy = info.actXY[1] - originalInfo.actXY[1];
914 * <a href="Resize.html#property_info">info</a> to respect the
924 info = instance.info,
929 info[offset] = size;
936 info[axis] = originalInfo[axis] + originalInfo[offset] - size;
996 * <p>Generates metadata to the <a href="Resize.html#property_info">info</a>
1043 var info = {
1057 info.border[borderColorProperty] = getCompStyle(node, borderColorProperty);
1058 info.border[borderStyleProperty] = getCompStyle(node, borderStyleProperty);
1059 info.border[borderWidthProperty] = getCompStyle(node, borderWidthProperty);
1060 info.margin[marginProperty] = getCompStyle(node, marginProperty);
1061 info.padding[paddingProperty] = getCompStyle(node, paddingProperty);
1065 info.totalHBorder = (toRoundNumber(info.border.borderLeftWidth) + toRoundNumber(info.border.borderRightWidth));
1066 info.totalHPadding = (toRoundNumber(info.padding.paddingLeft) + toRoundNumber(info.padding.paddingRight));
1067 info.totalVBorder = (toRoundNumber(info.border.borderBottomWidth) + toRoundNumber(info.border.borderTopWidth));
1068 info.totalVPadding = (toRoundNumber(info.padding.paddingBottom) + toRoundNumber(info.padding.paddingTop));
1070 return info;
1075 * <a href="Resize.html#property_info">info</a>.
1082 info = instance.info,
1087 wrapper.sizeTo(info.offsetWidth, info.offsetHeight);
1090 wrapper.setXY([info.left, info.top]);
1097 info.offsetWidth - wrapperSurrounding.totalHBorder,
1098 info.offsetHeight - wrapperSurrounding.totalVBorder
1126 * Update <a href="Resize.html#property_info">info</a> values (bottom, actXY, left, top, offsetHeight, offsetWidth, right).
1134 instance.info = instance._getInfo(instance.get(WRAPPER), event);
1334 info,
1338 instance.lastInfo = instance.info;
1340 // update the instance.info values
1343 info = instance.info;
1353 if (info.offsetHeight <= defMinHeight) {
1357 if (info.offsetWidth <= defMinWidth) {
1445 this.fire(EV_MOUSE_UP, { dragEvent: event, info: this.info });
1456 this.fire(EV_RESIZE, { dragEvent: event, info: this.info });
1467 this.fire(EV_RESIZE_ALIGN, { dragEvent: event, info: this.info });
1478 this.fire(EV_RESIZE_END, { dragEvent: event, info: this.info });
1493 this.fire(EV_RESIZE_START, { dragEvent: event, info: this.info });