support.js needs to come before event.js (also placed in a temporary setTimeout to delay the introduction of the ready in support - will remove when ready is moved to core.js, likely later today).
This commit is contained in:
parent
97323d192f
commit
afaae84a7a
2
Makefile
2
Makefile
|
@ -5,10 +5,10 @@ PREFIX = .
|
|||
DIST_DIR = ${PREFIX}/dist
|
||||
|
||||
BASE_FILES = ${SRC_DIR}/core.js\
|
||||
${SRC_DIR}/support.js\
|
||||
${SRC_DIR}/data.js\
|
||||
${SRC_DIR}/queue.js\
|
||||
${SRC_DIR}/event.js\
|
||||
${SRC_DIR}/support.js\
|
||||
${SRC_DIR}/selector.js\
|
||||
${SRC_DIR}/traversing.js\
|
||||
${SRC_DIR}/attributes.js\
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -1,5 +1,5 @@
|
|||
# Basic Rakefile for building jQuery
|
||||
files = [ "intro", "core", "data", "queue", "event", "support", "selector", "traversing", "attributes", "manipulation", "css", "ajax", "fx", "offset", "dimensions", "outro" ]
|
||||
files = [ "intro", "core", "suppport", "data", "queue", "event", "selector", "traversing", "attributes", "manipulation", "css", "ajax", "fx", "offset", "dimensions", "outro" ]
|
||||
|
||||
date = `git log -1 | grep Date: | sed 's/[^:]*: *//'`.gsub(/\n/, "")
|
||||
version = `cat version.txt`.gsub(/\n/, "")
|
||||
|
|
|
@ -37,10 +37,10 @@
|
|||
<concat destfile="${JQ}">
|
||||
<fileset dir="${SRC_DIR}" includes="intro.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="core.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="support.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="data.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="queue.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="event.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="support.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="selector.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="traversing.js" />
|
||||
<fileset dir="${SRC_DIR}" includes="attributes.js" />
|
||||
|
|
|
@ -81,6 +81,8 @@
|
|||
|
||||
// Figure out if the W3C box model works as expected
|
||||
// document.body must exist before we can do this
|
||||
// TODO: This timeout is temporary until I move ready into core.js.
|
||||
setTimeout(function(){
|
||||
jQuery(function(){
|
||||
var div = document.createElement("div");
|
||||
div.style.width = div.style.paddingLeft = "1px";
|
||||
|
@ -90,6 +92,7 @@
|
|||
document.body.removeChild( div ).style.display = 'none';
|
||||
div = null;
|
||||
});
|
||||
}, 13);
|
||||
|
||||
// Technique from Juriy Zaytsev
|
||||
// http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
|
||||
|
|
Loading…
Reference in a new issue