Getting ready for 1.0a.
This commit is contained in:
parent
6bf8667410
commit
73f55becc5
|
@ -3,4 +3,3 @@ type jquery\jquery.js > jquery-svn.js
|
||||||
type fx\fx.js >> jquery-svn.js
|
type fx\fx.js >> jquery-svn.js
|
||||||
type event\event.js >> jquery-svn.js
|
type event\event.js >> jquery-svn.js
|
||||||
type ajax\ajax.js >> jquery-svn.js
|
type ajax\ajax.js >> jquery-svn.js
|
||||||
type form\form.js >> jquery-svn.js
|
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cat jquery/jquery.js event/event.js fx/fx.js ajax/ajax.js form/form.js > jquery-svn.js
|
cat jquery/jquery.js event/event.js fx/fx.js ajax/ajax.js > jquery-svn.js
|
||||||
|
|
13
form/form.js
13
form/form.js
|
@ -127,6 +127,19 @@ $.fn.ajaxForm = function(target, post_cb, pre_cb) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: "foo.cgi",
|
||||||
|
data: $.param( $("form").formdata() ),
|
||||||
|
success: function(){},
|
||||||
|
error: function(){},
|
||||||
|
complete: function(){}
|
||||||
|
});
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A simple wrapper function that sits around the .serialize()
|
* A simple wrapper function that sits around the .serialize()
|
||||||
* method, allowing you to easily extract the data stored within
|
* method, allowing you to easily extract the data stored within
|
||||||
|
|
43
jquery/jquery.js
vendored
43
jquery/jquery.js
vendored
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* jQuery
|
* jQuery - New Wave Javascript
|
||||||
*
|
*
|
||||||
* Copyright (c) 2006 John Resig (jquery.com)
|
* Copyright (c) 2006 John Resig (jquery.com)
|
||||||
* Licensed under the MIT License:
|
* Licensed under the MIT License:
|
||||||
|
@ -17,9 +17,15 @@ window.undefined = window.undefined;
|
||||||
* @constructor
|
* @constructor
|
||||||
*/
|
*/
|
||||||
function jQuery(a,c) {
|
function jQuery(a,c) {
|
||||||
|
// Watch for when a jQuery object is passed in as an arg
|
||||||
|
if ( a && a.jquery )
|
||||||
|
return a;
|
||||||
|
|
||||||
|
// If the context is global, return a new object
|
||||||
if ( window == this )
|
if ( window == this )
|
||||||
return new jQuery(a,c);
|
return new jQuery(a,c);
|
||||||
|
|
||||||
|
// Find the matching elements and save them for later
|
||||||
this.cur = jQuery.Select(
|
this.cur = jQuery.Select(
|
||||||
a || jQuery.context || document,
|
a || jQuery.context || document,
|
||||||
c && c.jquery && c.get(0) || c
|
c && c.jquery && c.get(0) || c
|
||||||
|
@ -29,8 +35,34 @@ function jQuery(a,c) {
|
||||||
/**
|
/**
|
||||||
* The jQuery query object.
|
* The jQuery query object.
|
||||||
*/
|
*/
|
||||||
|
if ( !window.$ )
|
||||||
var $ = jQuery;
|
var $ = jQuery;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Handle support for overriding other $() functions. Way too many libraries
|
||||||
|
* provide this function to simply ignore it and overwrite it.
|
||||||
|
*/
|
||||||
|
else
|
||||||
|
var $ = function(a,c) {
|
||||||
|
// Check to see if this is a possible collision case
|
||||||
|
if ( !c && a.constructor == String &&
|
||||||
|
|
||||||
|
// Make sure that the expression is a colliding one
|
||||||
|
!/[^a-zA-Z0-9_-]/.test(a) &&
|
||||||
|
|
||||||
|
// and that there are no elements that match it
|
||||||
|
// (this is the one truly ambiguous case)
|
||||||
|
!document.getElementsByTagName(a).length ) {
|
||||||
|
|
||||||
|
// Only return the element if it's found
|
||||||
|
var obj = document.getElementById(a);
|
||||||
|
if ( obj ) return obj;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return jQuery(a,c);
|
||||||
|
};
|
||||||
|
|
||||||
jQuery.fn = jQuery.prototype = {
|
jQuery.fn = jQuery.prototype = {
|
||||||
/**
|
/**
|
||||||
* The current SVN version of jQuery.
|
* The current SVN version of jQuery.
|
||||||
|
@ -67,7 +99,7 @@ jQuery.fn = jQuery.prototype = {
|
||||||
},
|
},
|
||||||
set: function(a,b) {
|
set: function(a,b) {
|
||||||
return this.each(function(){
|
return this.each(function(){
|
||||||
if ( b == undefined )
|
if ( b === undefined )
|
||||||
for ( var j in a )
|
for ( var j in a )
|
||||||
jQuery.attr(this,j,a[j]);
|
jQuery.attr(this,j,a[j]);
|
||||||
else
|
else
|
||||||
|
@ -96,7 +128,7 @@ jQuery.fn = jQuery.prototype = {
|
||||||
css: function(a,b) {
|
css: function(a,b) {
|
||||||
return a.constructor != String || b ?
|
return a.constructor != String || b ?
|
||||||
this.each(function(){
|
this.each(function(){
|
||||||
if ( !b )
|
if ( b === undefined )
|
||||||
for ( var j in a )
|
for ( var j in a )
|
||||||
jQuery.attr(this.style,j,a[j]);
|
jQuery.attr(this.style,j,a[j]);
|
||||||
else
|
else
|
||||||
|
@ -459,7 +491,7 @@ jQuery.g = {
|
||||||
contains: "(a.innerText||a.innerHTML).indexOf(m[3])!=-1",
|
contains: "(a.innerText||a.innerHTML).indexOf(m[3])!=-1",
|
||||||
visible: "(!a.type||a.type!='hidden')&&(jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!= 'hidden')",
|
visible: "(!a.type||a.type!='hidden')&&(jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!= 'hidden')",
|
||||||
hidden: "(a.type&&a.type=='hidden')||jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')== 'hidden'",
|
hidden: "(a.type&&a.type=='hidden')||jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')== 'hidden'",
|
||||||
enabled: "a.disabled==false",
|
enabled: "!a.disabled",
|
||||||
disabled: "a.disabled",
|
disabled: "a.disabled",
|
||||||
checked: "a.checked"
|
checked: "a.checked"
|
||||||
},
|
},
|
||||||
|
@ -493,7 +525,8 @@ jQuery.token = [
|
||||||
|
|
||||||
jQuery.Select = function( t, context ) {
|
jQuery.Select = function( t, context ) {
|
||||||
context = context || jQuery.context || document;
|
context = context || jQuery.context || document;
|
||||||
if ( t.constructor != String ) return [t];
|
if ( t.constructor != String )
|
||||||
|
return t.constructor == Array ? t : [t];
|
||||||
|
|
||||||
if ( !t.indexOf("//") ) {
|
if ( !t.indexOf("//") ) {
|
||||||
context = context.documentElement;
|
context = context.documentElement;
|
||||||
|
|
Loading…
Reference in a new issue