Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switching to outerHeight / outerWidth for explode / flyTo. #206

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/transitions/explode.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ function _explodePart(context, field, childContext, selector) {
child = elt.find(selector);
if (child.length > 0) {
childOffset = child.offset();
width = child.width();
height = child.height();
width = child.outerWidth();
height = child.outerHeight();
newChild = child.clone();

// Hide the original element
Expand Down
4 changes: 2 additions & 2 deletions app/transitions/fly-to.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default function flyTo(opts={}) {
var motion = {
translateX: newOffset.left - oldOffset.left,
translateY: newOffset.top - oldOffset.top,
width: this.newElement.width(),
height: this.newElement.height()
width: this.newElement.outerWidth(),
height: this.newElement.outerHeight()
};

this.newElement.css({ visibility: 'hidden' });
Expand Down