Skip to content

Commit

Permalink
v0.75 Fixing issue benbarnett#35 to pass actual object back as contex…
Browse files Browse the repository at this point in the history
…t for callback
  • Loading branch information
benbarnett authored and Gabriel Gilder committed Sep 26, 2011
1 parent 65255ac commit 1909c70
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ By default if the plugin is animating a left or a top property, the translate (2
Changelog
-----------------

0.75 (15/06/2011):

* Fixing issue #35 to pass actual object back as context for callback

0.74 (28/05/2011):

* Fixing issue #29 to play nice with 1.6
Expand Down
4 changes: 2 additions & 2 deletions jquery.animate-enhanced.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions scripts/src/jquery.animate-enhanced.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
jquery.animate-enhanced plugin v0.74
jquery.animate-enhanced plugin v0.75
---
http://github.com/benbarnett/jQuery-Animate-Enhanced
http://benbarnett.net
Expand Down Expand Up @@ -44,6 +44,9 @@ Usage (exactly the same as it would be normally):
});
Changelog:
0.75 (15/06/2011):
- Fixing issue #35 to pass actual object back as context for callback
0.74 (28/05/2011):
- Fixing issue #29 to play nice with 1.6+
Expand Down Expand Up @@ -427,7 +430,7 @@ Changelog:
if (callbackQueue === 0) {
// we're done, trigger the user callback
if (typeof optall.complete === 'function') {
optall.complete.apply(elements, arguments);
optall.complete.apply(elements[0], arguments);
}
}
};
Expand Down

0 comments on commit 1909c70

Please sign in to comment.