jquery dimensions & offset: moving the local function 'num' to core, so it can be...
authorAriel Flesler <aflesler@gmail.com>
Thu, 15 May 2008 12:53:07 +0000 (12:53 +0000)
committerAriel Flesler <aflesler@gmail.com>
Thu, 15 May 2008 12:53:07 +0000 (12:53 +0000)
src/core.js
src/dimensions.js

index e988d48..fedd292 100644 (file)
@@ -1359,3 +1359,8 @@ jQuery.each([ "Height", "Width" ], function(i, name){
                                        this.css( type, size.constructor == String ? size : size + "px" );
        };
 });
+
+// Helper function used by the dimensions and offset modules
+function num(elem, prop) {
+       return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0;
+}
\ No newline at end of file
index 44ba357..bcef47f 100644 (file)
@@ -20,8 +20,4 @@ jQuery.each([ "Height", "Width" ], function(i, name){
                                num(this, "margin" + tl) + num(this, "margin" + br) : 0);
        };
 
-});
-
-function num(elem, prop) {
-       return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0;
-}
+});
\ No newline at end of file