diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2015-10-18 11:02:16 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2015-10-18 11:02:16 -0400 |
commit | e271f665dd8fb617a5015051e1c9df8cebd6c97b (patch) | |
tree | 0fc361acd0bb2c34733f1680a46edb99223b45b0 | |
parent | 0fb84fa8ccefcd07febf282fd7b80262ad70add7 (diff) | |
download | jquery-e271f665dd8fb617a5015051e1c9df8cebd6c97b.tar.gz jquery-e271f665dd8fb617a5015051e1c9df8cebd6c97b.zip |
Deprecated: fix amd mode for the deprecated module
-rw-r--r-- | package.json | 1 | ||||
-rw-r--r-- | src/deprecated.js | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/package.json b/package.json index fd3f695ec..b48f90a98 100644 --- a/package.json +++ b/package.json @@ -71,6 +71,7 @@ "CSS", "Data", "Deferred", + "Deprecated", "Dimensions", "Effects", "Event", diff --git a/src/deprecated.js b/src/deprecated.js index bc75f098a..78885266d 100644 --- a/src/deprecated.js +++ b/src/deprecated.js @@ -1,4 +1,6 @@ -define( function() { +define( [ + "./core" +], function( jQuery ) { jQuery.fn.extend( { |