Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Fix wrong variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Jul 19, 2013
1 parent ab3c9fc commit 7cdf72f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/position.js
Expand Up @@ -70,7 +70,7 @@ PROTOTYPE.reposition = function(event, effect) {
cache.target = $(event.target);
}
else if(target !== 'event'){
cache.target = $(target.jquery ? target : elements.target);
cache.target = $(target.jquery ? target : this.elements.target);
}
target = cache.target;

Expand Down

0 comments on commit 7cdf72f

Please sign in to comment.