diff options
author | Norman Xu <homyu.shinn@gmail.com> | 2014-12-17 21:51:36 +0000 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2014-12-31 17:43:03 +0300 |
commit | 2866da9e12b7cf339667ae894ffe072f4eb673de (patch) | |
tree | f1833963585e31c3157be674dcff0cc88c49d156 /src/event.js | |
parent | efb98f85bab7f2ec9f38d6991d7b1bc683a514ce (diff) | |
download | jquery-2866da9e12b7cf339667ae894ffe072f4eb673de.tar.gz jquery-2866da9e12b7cf339667ae894ffe072f4eb673de.zip |
Event: Add reference to data module
Since we are using _data() quite a lot in event module
and drop data/accepts as there is no direct reference
Ref gh-1948
Diffstat (limited to 'src/event.js')
-rw-r--r-- | src/event.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event.js b/src/event.js index f6674872d..b3a149891 100644 --- a/src/event.js +++ b/src/event.js @@ -6,7 +6,7 @@ define([ "./event/support", "./core/init", - "./data/accepts", + "./data", "./selector" ], function( jQuery, rnotwhite, hasOwn, slice, support ) { |