aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2013-08-15 20:38:48 -0400
committerTimmy Willison <timmywillisn@gmail.com>2013-08-15 20:38:48 -0400
commitcecb52ff5c5c5c6a030b6520dc1e39ec4c6df3d9 (patch)
tree07a6ac4e076f88f4d868a953c9d69a4e784e4d1b /src/attributes
parent7877c4fa73120bc6d21a5fcd302a896f03b23876 (diff)
downloadjquery-cecb52ff5c5c5c6a030b6520dc1e39ec4c6df3d9.tar.gz
jquery-cecb52ff5c5c5c6a030b6520dc1e39ec4c6df3d9.zip
Specify support as a dependency wherever it is used. Optimize module order to save 15 bytes.
Diffstat (limited to 'src/attributes')
-rw-r--r--src/attributes/attr.js3
-rw-r--r--src/attributes/prop.js3
-rw-r--r--src/attributes/val.js3
3 files changed, 6 insertions, 3 deletions
diff --git a/src/attributes/attr.js b/src/attributes/attr.js
index 4e0102bfa..202c7028b 100644
--- a/src/attributes/attr.js
+++ b/src/attributes/attr.js
@@ -2,7 +2,8 @@ define([
"../core",
"../var/rnotwhite",
"../var/strundefined",
- "../selector"
+ "../selector",
+ "../support"
], function( jQuery, rnotwhite, strundefined ) {
var nodeHook, boolHook;
diff --git a/src/attributes/prop.js b/src/attributes/prop.js
index f7ce11f97..95462bbbb 100644
--- a/src/attributes/prop.js
+++ b/src/attributes/prop.js
@@ -1,5 +1,6 @@
define([
- "../core"
+ "../core",
+ "../support"
], function( jQuery ) {
var rfocusable = /^(?:input|select|textarea|button)$/i;
diff --git a/src/attributes/val.js b/src/attributes/val.js
index fd8badeb2..73a3bf3ea 100644
--- a/src/attributes/val.js
+++ b/src/attributes/val.js
@@ -1,5 +1,6 @@
define([
- "../core"
+ "../core",
+ "../support"
], function( jQuery ) {
var rreturn = /\r/g;