aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2009-03-17 21:07:11 +0000
committerBrandon Aaron <brandon.aaron@gmail.com>2009-03-17 21:07:11 +0000
commitaabf635cfe9b75fce3d96eb3e40e25f4a29ea99b (patch)
tree91c5966af4ed3c2c218efae1b27dfee87b084390 /src/core.js
parenta37cccc8827619cfbd76e229af9de2529041ee5b (diff)
downloadjquery-aabf635cfe9b75fce3d96eb3e40e25f4a29ea99b.tar.gz
jquery-aabf635cfe9b75fce3d96eb3e40e25f4a29ea99b.zip
using parseFloat for offset and position methods and removed num helper method
Diffstat (limited to 'src/core.js')
-rw-r--r--src/core.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core.js b/src/core.js
index f02bb0652..446c82e58 100644
--- a/src/core.js
+++ b/src/core.js
@@ -1289,8 +1289,3 @@ function cleanData( elems ) {
}
}
}
-
-// 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;
-}