aboutsummaryrefslogtreecommitdiffstats
path: root/npm_assets/node_modules/jquery/src/dimensions.js
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2022-04-20 00:13:08 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2022-04-20 00:13:08 -0400
commitaca2787b50094a4ab1f17162aa92c5263858743e (patch)
treec227d3a22fe454f92162d8d91ecb81f3141ace94 /npm_assets/node_modules/jquery/src/dimensions.js
parent78e717290e125cab92aef712f12ae63fedb4070f (diff)
parent942e313727d1ad886a1024c24fe4a9e8e2e0bb3e (diff)
Update upstream source from tag 'upstream/8.2.0'
Update to upstream version '8.2.0' with Debian dir 65d01d7d78d6b41c0be6eb196ed84354526f9384
Diffstat (limited to 'npm_assets/node_modules/jquery/src/dimensions.js')
-rw-r--r--npm_assets/node_modules/jquery/src/dimensions.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/npm_assets/node_modules/jquery/src/dimensions.js b/npm_assets/node_modules/jquery/src/dimensions.js
index 2a2c039..5d12450 100644
--- a/npm_assets/node_modules/jquery/src/dimensions.js
+++ b/npm_assets/node_modules/jquery/src/dimensions.js
@@ -9,8 +9,11 @@ define( [
// 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 ) {
+ jQuery.each( {
+ padding: "inner" + name,
+ content: type,
+ "": "outer" + name
+ }, function( defaultExtra, funcName ) {
// Margin is only for outerHeight, outerWidth
jQuery.fn[ funcName ] = function( margin, value ) {