Skip to content
Permalink
Browse files
Reintroduced .offset() as a default include, added original author cr…
…edits.
  • Loading branch information
jeresig committed Sep 8, 2007
1 parent 2929f8a commit 15a78f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
@@ -12,7 +12,8 @@ BASE_FILES = ${SRC_DIR}/core.js\
${SRC_DIR}/selector.js\
${SRC_DIR}/event.js\
${SRC_DIR}/ajax.js\
${SRC_DIR}/fx.js
${SRC_DIR}/fx.js\
${SRC_DIR}/offset.js

PLUGINS = ${PLUG_DIR}/button/*\
${PLUG_DIR}/center/*\
@@ -50,6 +50,7 @@
<fileset dir="${SRC_DIR}" includes="event.js" />
<fileset dir="${SRC_DIR}" includes="ajax.js" />
<fileset dir="${SRC_DIR}" includes="fx.js" />
<fileset dir="${SRC_DIR}" includes="offset.js" />
<fileset dir="${PLUGIN_DIR}" includes="${PLUGINS}" />
<fileset dir="${SRC_DIR}" includes="outro.js" />
</concat>
@@ -1,3 +1,6 @@
// The Offset Method
// Originally By Brandon Aaron, part of the Dimension Plugin
// http://jquery.com/plugins/project/dimensions
jQuery.fn.offset = function() {
var left = 0, top = 0, elem = this[0], results;

0 comments on commit 15a78f8

Please sign in to comment.