diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-09-09 19:13:01 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-09-09 19:13:01 -0500 |
commit | 825ac3773694e0cd23ee74895fd5aeb535b27da4 (patch) | |
tree | b389bf60adbfd0cb06a92f91ca5fc5509f66f197 /src/attributes | |
parent | d788010aa724f58090560e83c224d3d140814b51 (diff) | |
download | jquery-825ac3773694e0cd23ee74895fd5aeb535b27da4.tar.gz jquery-825ac3773694e0cd23ee74895fd5aeb535b27da4.zip |
Separate jQuery.fn.init into its own module (for lighter core dependencies across all modules)
Diffstat (limited to 'src/attributes')
-rw-r--r-- | src/attributes/classes.js | 3 | ||||
-rw-r--r-- | src/attributes/val.js | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/attributes/classes.js b/src/attributes/classes.js index aed8db88a..d7212f9de 100644 --- a/src/attributes/classes.js +++ b/src/attributes/classes.js @@ -2,7 +2,8 @@ define([ "../core", "../var/rnotwhite", "../var/strundefined", - "../data/var/data_priv" + "../data/var/data_priv", + "../core/init" ], function( jQuery, rnotwhite, strundefined, data_priv ) { var rclass = /[\t\r\n\f]/g; diff --git a/src/attributes/val.js b/src/attributes/val.js index 74d8c9c46..0e7e7ce43 100644 --- a/src/attributes/val.js +++ b/src/attributes/val.js @@ -1,6 +1,7 @@ define([ "../core", - "./support" + "./support", + "../core/init" ], function( jQuery, support ) { var rreturn = /\r/g; |