diff options
author | jaubourg <j@ubourg.net> | 2011-04-12 01:09:35 +0200 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-04-12 01:09:35 +0200 |
commit | 2b70893928035d53f46575003197e4a1fa52a844 (patch) | |
tree | bcbeb33f3704b532d113f224ec9c4fb09fe501b7 /test | |
parent | f6f1cc77f402f0825898756e8c2100798918a61a (diff) | |
download | jquery-2b70893928035d53f46575003197e4a1fa52a844.tar.gz jquery-2b70893928035d53f46575003197e4a1fa52a844.zip |
Bug fixes in queue.js: type in dequeue could be undefined which lead to a wrong data key, which would then have undesirable data left dangling on elements. Also adds missing semicolon in effects unit.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/effects.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js index 4f6785111..71a81eef7 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -807,7 +807,7 @@ jQuery.checkState = function(){ jQuery.removeData(this, 'olddisplay', true); start(); -} +}; // Chaining Tests test("Chain fadeOut fadeIn", function() { |