diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-09-09 12:13:41 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-09-09 13:54:46 -0500 |
commit | 99191a510ecb5584addc0391edd56d626067b28a (patch) | |
tree | dd74972f85d47ed898e15dd24dedd722fac47440 /src/dimensions.js | |
parent | cd4a9cd7fa7093df92e64d5da9f18742254a8ca7 (diff) | |
download | jquery-99191a510ecb5584addc0391edd56d626067b28a.tar.gz jquery-99191a510ecb5584addc0391edd56d626067b28a.zip |
Apply consistent ordering in all modules. -38 bytes. Order modules like functions > jQuery.extend > jQuery.fn.extend.
Diffstat (limited to 'src/dimensions.js')
-rw-r--r-- | src/dimensions.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dimensions.js b/src/dimensions.js index 534e0217d..9cb0e99f0 100644 --- a/src/dimensions.js +++ b/src/dimensions.js @@ -3,6 +3,7 @@ define([ "./core/access", "./css" ], function( jQuery, access ) { + // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { |