More bug fixes and added documentation - passes the test suite now.
This commit is contained in:
parent
df9c37ec85
commit
9477c418db
94
ajax/ajax.js
94
ajax/ajax.js
|
@ -5,7 +5,7 @@
|
|||
/**
|
||||
* Load HTML from a remote file and inject it into the DOM
|
||||
*/
|
||||
jQuery.prototype.load = function( url, params, callback ) {
|
||||
jQuery.fn.load = function( url, params, callback ) {
|
||||
// I overwrote the event plugin's .load
|
||||
// this won't happen again, I hope -John
|
||||
if ( url && url.constructor == Function )
|
||||
|
@ -52,49 +52,61 @@ jQuery.prototype.load = function( url, params, callback ) {
|
|||
return this;
|
||||
};
|
||||
|
||||
/**
|
||||
* Load a remote page using a GET request
|
||||
*/
|
||||
jQuery.get = function( url, callback, type ) {
|
||||
// Build and start the HTTP Request
|
||||
jQuery.ajax( "GET", url, null, function(r) {
|
||||
if ( callback ) callback( jQuery.httpData(r,type) );
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Load a remote page using a POST request.
|
||||
*/
|
||||
jQuery.post = function( url, data, callback, type ) {
|
||||
// Build and start the HTTP Request
|
||||
jQuery.ajax( "POST", url, jQuery.param(data), function(r) {
|
||||
if ( callback ) callback( jQuery.httpData(r,type) );
|
||||
});
|
||||
};
|
||||
|
||||
// If IE is used, create a wrapper for the XMLHttpRequest object
|
||||
if ( jQuery.browser == "msie" )
|
||||
if ( jQuery.browser.msie )
|
||||
XMLHttpRequest = function(){
|
||||
return new ActiveXObject(
|
||||
(navigator.userAgent.toLowerCase().indexOf("msie 5") >= 0) ?
|
||||
navigator.userAgent.indexOf("MSIE 5") >= 0 ?
|
||||
"Microsoft.XMLHTTP" : "Msxml2.XMLHTTP"
|
||||
);
|
||||
};
|
||||
|
||||
// Attach a bunch of functions for handling common AJAX events
|
||||
(function(){
|
||||
new function(){
|
||||
var e = "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess".split(',');
|
||||
|
||||
for ( var i = 0; i < e.length; i++ ){ (function(){
|
||||
for ( var i = 0; i < e.length; i++ ) new function(){
|
||||
var o = e[i];
|
||||
jQuery.fn[o] = function(f){return this.bind(o, f);};
|
||||
})();}
|
||||
})();
|
||||
jQuery.fn[o] = function(f){
|
||||
return this.bind(o, f);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
jQuery.extend({
|
||||
|
||||
/**
|
||||
* Load a remote page using a GET request
|
||||
*/
|
||||
get: function( url, data, callback, type ) {
|
||||
if ( data.constructor == Function ) {
|
||||
callback = data;
|
||||
data = null;
|
||||
}
|
||||
|
||||
if ( data )
|
||||
url += "?" + jQuery.param(data);
|
||||
|
||||
// Build and start the HTTP Request
|
||||
jQuery.ajax( "GET", url, null, function(r) {
|
||||
if ( callback ) callback( jQuery.httpData(r,type) );
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Load a remote page using a POST request.
|
||||
*/
|
||||
post: function( url, data, callback, type ) {
|
||||
// Build and start the HTTP Request
|
||||
jQuery.ajax( "POST", url, jQuery.param(data), function(r) {
|
||||
if ( callback ) callback( jQuery.httpData(r,type) );
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* A common wrapper for making XMLHttpRequests
|
||||
*/
|
||||
jQuery.ajax = function( type, url, data, ret ) {
|
||||
ajax: function( type, url, data, ret ) {
|
||||
// If only a single argument was passed in,
|
||||
// assume that it is a object of key/value pairs
|
||||
if ( !url ) {
|
||||
|
@ -107,7 +119,7 @@ jQuery.ajax = function( type, url, data, ret ) {
|
|||
}
|
||||
|
||||
// Watch for a new set of requests
|
||||
if ( ! jQuery.ajax.active++ )
|
||||
if ( ! jQuery.active++ )
|
||||
jQuery.event.trigger( "ajaxStart" );
|
||||
|
||||
// Create the request object
|
||||
|
@ -153,43 +165,43 @@ jQuery.ajax = function( type, url, data, ret ) {
|
|||
jQuery.event.trigger( "ajaxComplete" );
|
||||
|
||||
// Handle the global AJAX counter
|
||||
if ( ! --jQuery.ajax.active )
|
||||
if ( ! --jQuery.active )
|
||||
jQuery.event.trigger( "ajaxStop" );
|
||||
|
||||
// Process result
|
||||
if ( ret ) ret(xml);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// Send the data
|
||||
xml.send(data);
|
||||
};
|
||||
},
|
||||
|
||||
// Counter for holding the number of active queries
|
||||
jQuery.ajax.active = 0;
|
||||
active: 0,
|
||||
|
||||
// Determines if an XMLHttpRequest was successful or not
|
||||
jQuery.httpSuccess = function(r) {
|
||||
httpSuccess: function(r) {
|
||||
try {
|
||||
return r.status ?
|
||||
( r.status >= 200 && r.status < 300 ) || r.status == 304 :
|
||||
location.protocol == "file:";
|
||||
} catch(e){}
|
||||
return false;
|
||||
};
|
||||
},
|
||||
|
||||
// Get the data out of an XMLHttpRequest.
|
||||
// Return parsed XML if content-type header is "xml" and type is "xml" or omitted,
|
||||
// otherwise return plain text.
|
||||
jQuery.httpData = function(r,type) {
|
||||
httpData: function(r,type) {
|
||||
var ct = r.getResponseHeader("content-type");
|
||||
var xml = ( !type || type == "xml" ) && ct && ct.indexOf("xml") >= 0;
|
||||
return xml ? r.responseXML : r.responseText;
|
||||
};
|
||||
},
|
||||
|
||||
// Serialize an array of form elements or a set of
|
||||
// key/values into a query string
|
||||
jQuery.param = function(a) {
|
||||
param: function(a) {
|
||||
var s = [];
|
||||
|
||||
// If an array was passed in, assume that it is an array
|
||||
|
@ -207,4 +219,6 @@ jQuery.param = function(a) {
|
|||
|
||||
// Return the resulting serialization
|
||||
return s.join("&");
|
||||
};
|
||||
}
|
||||
|
||||
});
|
||||
|
|
116
event/event.js
116
event/event.js
|
@ -1,11 +1,13 @@
|
|||
jQuery.fn.extend({
|
||||
|
||||
// We're overriding the old toggle function, so
|
||||
// remember it for later
|
||||
jQuery.prototype._toggle = jQuery.prototype.toggle;
|
||||
_toggle: jQuery.fn.toggle,
|
||||
|
||||
/**
|
||||
* Toggle between two function calls every other click.
|
||||
*/
|
||||
jQuery.prototype.toggle = function(a,b) {
|
||||
toggle: function(a,b) {
|
||||
// If two functions are passed in, we're
|
||||
// toggling on a click
|
||||
return a && b ? this.click(function(e){
|
||||
|
@ -21,12 +23,12 @@ jQuery.prototype.toggle = function(a,b) {
|
|||
|
||||
// Otherwise, execute the old toggle function
|
||||
this._toggle();
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Toggle between two function calls on mouse over/out.
|
||||
*/
|
||||
jQuery.prototype.hover = function(f,g) {
|
||||
hover: function(f,g) {
|
||||
|
||||
// A private function for haandling mouse 'hovering'
|
||||
function handleHover(e) {
|
||||
|
@ -45,12 +47,12 @@ jQuery.prototype.hover = function(f,g) {
|
|||
|
||||
// Bind the function to the two event listeners
|
||||
return this.mouseover(handleHover).mouseout(handleHover);
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Bind a function to fire when the DOM is ready.
|
||||
*/
|
||||
jQuery.prototype.ready = function(f) {
|
||||
ready: function(f) {
|
||||
// If the DOM is already ready
|
||||
if ( jQuery.isReady )
|
||||
// Execute the function immediately
|
||||
|
@ -63,60 +65,18 @@ jQuery.prototype.ready = function(f) {
|
|||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
(function(){
|
||||
/*
|
||||
* Bind a number of event-handling functions, dynamically
|
||||
*/
|
||||
var e = ("blur,focus,contextmenu,load,resize,scroll,unload,click,dblclick," +
|
||||
"mousedown,mouseup,mouseenter,mouseleave,mousemove,mouseover,mouseout," +
|
||||
"change,reset,select,submit,keydown,keypress,keyup").split(",");
|
||||
|
||||
// Go through all the event names, but make sure that
|
||||
// it is enclosed properly
|
||||
for ( var i = 0; i < e.length; i++ ) {(function(){
|
||||
|
||||
var o = e[i];
|
||||
|
||||
// Handle event binding
|
||||
jQuery.prototype[o] = function(f){ return this.bind(o, f); };
|
||||
|
||||
// Handle event unbinding
|
||||
jQuery.prototype["un"+o] = function(f){ return this.unbind(o, f); };
|
||||
|
||||
// Handle event triggering
|
||||
jQuery.prototype["do"+o] = function(){ return this.trigger(o); };
|
||||
|
||||
// Finally, handle events that only fire once
|
||||
jQuery.prototype["one"+o] = function(f){
|
||||
// Attach the event listener
|
||||
return this.bind(o, function(e){
|
||||
// TODO: Remove the event listener, instead of this hack
|
||||
|
||||
// If this function has already been executed, stop
|
||||
if ( this[o+f] !== null )
|
||||
return true;
|
||||
|
||||
// Otherwise, mark as having been executed
|
||||
this[o+f]++;
|
||||
|
||||
// And execute the bound function
|
||||
return f.apply(this, [e]);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
})();}
|
||||
|
||||
jQuery.extend({
|
||||
/*
|
||||
* All the code that makes DOM Ready work nicely.
|
||||
*/
|
||||
|
||||
jQuery.isReady = false;
|
||||
jQuery.readyList = [];
|
||||
isReady: false,
|
||||
readyList: [],
|
||||
|
||||
// Handle when the DOM is ready
|
||||
jQuery.ready = function() {
|
||||
ready: function() {
|
||||
// Make sure that the DOM is not already loaded
|
||||
if ( !jQuery.isReady ) {
|
||||
// Remember that the DOM is ready
|
||||
|
@ -132,16 +92,58 @@ jQuery.prototype.ready = function(f) {
|
|||
jQuery.readyList = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
new function(){
|
||||
/*
|
||||
* Bind a number of event-handling functions, dynamically
|
||||
*/
|
||||
var e = ("blur,focus,load,resize,scroll,unload,click,dblclick," +
|
||||
"mousedown,mouseup,mousemove,mouseover,mouseout,change,reset,select," +
|
||||
"submit,keydown,keypress,keyup,error").split(",");
|
||||
|
||||
// Go through all the event names, but make sure that
|
||||
// it is enclosed properly
|
||||
for ( var i = 0; i < e.length; i++ ) new function(){
|
||||
|
||||
var o = e[i];
|
||||
|
||||
// Handle event binding
|
||||
jQuery.fn[o] = function(f){
|
||||
return f ? this.bind(o, f) : this.trigger(o);
|
||||
};
|
||||
|
||||
// Handle event unbinding
|
||||
jQuery.fn["un"+o] = function(f){ return this.unbind(o, f); };
|
||||
|
||||
// Finally, handle events that only fire once
|
||||
jQuery.fn["one"+o] = function(f){
|
||||
// Attach the event listener
|
||||
return this.bind(o, function(e){
|
||||
// TODO: Remove the event listener, instead of this hack
|
||||
|
||||
// If this function has already been executed, stop
|
||||
if ( this[o+f] !== null ) return;
|
||||
|
||||
// Otherwise, mark as having been executed
|
||||
this[o+f]++;
|
||||
|
||||
// And execute the bound function
|
||||
return f.apply(this, [e]);
|
||||
});
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
// If Mozilla is used
|
||||
if ( jQuery.browser == "mozilla" || jQuery.browser == "opera" ) {
|
||||
if ( jQuery.browser.mozilla || jQuery.browser.opera ) {
|
||||
// Use the handy event callback
|
||||
document.addEventListener( "DOMContentLoaded", jQuery.ready, false );
|
||||
|
||||
// If IE is used, use the excellent hack by Matthias Miller
|
||||
// http://www.outofhanwell.com/blog/index.php?title=the_window_onload_problem_revisited
|
||||
} else if ( jQuery.browser == "msie" ) {
|
||||
} else if ( jQuery.browser.msie ) {
|
||||
|
||||
// Only works if you document.write() it
|
||||
document.write("<scr" + "ipt id=__ie_init defer=true " +
|
||||
|
@ -158,7 +160,7 @@ jQuery.prototype.ready = function(f) {
|
|||
script = null;
|
||||
|
||||
// If Safari is used
|
||||
} else if ( jQuery.browser == "safari" ) {
|
||||
} else if ( jQuery.browser.safari ) {
|
||||
// Continually check to see if the document.readyState is valid
|
||||
jQuery.safariTimer = setInterval(function(){
|
||||
// loaded and complete are both valid states
|
||||
|
@ -178,4 +180,4 @@ jQuery.prototype.ready = function(f) {
|
|||
// A fallback to window.onload, that will always work
|
||||
jQuery.event.add( window, "load", jQuery.ready );
|
||||
|
||||
})();
|
||||
}
|
||||
|
|
145
fx/fx.js
145
fx/fx.js
|
@ -1,5 +1,7 @@
|
|||
jQuery.fn.extend({
|
||||
|
||||
// overwrite the old show method
|
||||
jQuery.prototype._show = jQuery.prototype.show;
|
||||
_show: jQuery.fn.show,
|
||||
|
||||
/**
|
||||
* The effects module overloads the show method to now allow
|
||||
|
@ -12,28 +14,25 @@ jQuery.prototype._show = jQuery.prototype.show;
|
|||
* that are already shown. This can be circumvented by doing this:
|
||||
* $("p:hidden").show("slow");
|
||||
*/
|
||||
jQuery.prototype.show = function(speed,callback){
|
||||
show: function(speed,callback){
|
||||
return speed ? this.animate({
|
||||
height: "show", width: "show", opacity: "show"
|
||||
}, speed, callback) : this._show();
|
||||
};
|
||||
},
|
||||
|
||||
// We're overwriting the old hide method
|
||||
jQuery.prototype._hide = jQuery.prototype.hide;
|
||||
|
||||
_hide: jQuery.fn.hide,
|
||||
|
||||
/**
|
||||
* The hide function behaves very similary to the show function,
|
||||
* but is just the opposite.
|
||||
* $("p:visible").hide("slow");
|
||||
*/
|
||||
jQuery.prototype.hide = function(speed,callback){
|
||||
hide: function(speed,callback){
|
||||
return speed ? this.animate({
|
||||
height: "hide",
|
||||
width: "hide",
|
||||
opacity: "hide"
|
||||
height: "hide", width: "hide", opacity: "hide"
|
||||
}, speed, callback) : this._hide();
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* This function increases the height and opacity for all matched
|
||||
|
@ -41,46 +40,46 @@ jQuery.prototype.hide = function(speed,callback){
|
|||
* the width - creating a neat sliding effect.
|
||||
* $("p:hidden").slideDown("slow");
|
||||
*/
|
||||
jQuery.prototype.slideDown = function(speed,callback){
|
||||
slideDown: function(speed,callback){
|
||||
return this.animate({height: "show"}, speed, callback);
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Just like slideDown, only it hides all matched elements.
|
||||
* $("p:visible").slideUp("slow");
|
||||
*/
|
||||
jQuery.prototype.slideUp = function(speed,callback){
|
||||
slideUp: function(speed,callback){
|
||||
return this.animate({height: "hide"}, speed, callback);
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Adjusts the opacity of all matched elements from a hidden,
|
||||
* to a fully visible, state.
|
||||
* $("p:hidden").fadeIn("slow");
|
||||
*/
|
||||
jQuery.prototype.fadeIn = function(speed,callback){
|
||||
fadeIn: function(speed,callback){
|
||||
return this.animate({opacity: "show"}, speed, callback);
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Same as fadeIn, but transitions from a visible, to a hidden state.
|
||||
* $("p:visible").fadeOut("slow");
|
||||
*/
|
||||
jQuery.prototype.fadeOut = function(speed,callback){
|
||||
fadeOut: function(speed,callback){
|
||||
return this.animate({opacity: "hide"}, speed, callback);
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* ...
|
||||
*/
|
||||
jQuery.prototype.fadeTo = function(speed,to,callback){
|
||||
fadeTo: function(speed,to,callback){
|
||||
return this.animate({opacity: to}, speed, callback);
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
jQuery.prototype.animate = function(prop,speed,callback) {
|
||||
animate: function(prop,speed,callback) {
|
||||
return this.queue(function(){
|
||||
var i = 0;
|
||||
for ( var p in prop ) {
|
||||
|
@ -91,49 +90,13 @@ jQuery.prototype.animate = function(prop,speed,callback) {
|
|||
e[ prop[p] ]();
|
||||
}
|
||||
});
|
||||
};
|
||||
},
|
||||
|
||||
jQuery.speed = function(s,o,i) {
|
||||
o = o || {};
|
||||
|
||||
if ( o.constructor == Function )
|
||||
o = { complete: o };
|
||||
|
||||
var ss = {"slow":600,"fast":200};
|
||||
o.duration = (s && s.constructor == Number ? s : ss[s]) || 400;
|
||||
|
||||
// Queueing
|
||||
o.oldComplete = o.complete;
|
||||
o.complete = function(){
|
||||
jQuery.dequeue(this, "fx");
|
||||
if ( o.oldComplete && o.oldComplete.constructor == Function )
|
||||
o.oldComplete.apply( this );
|
||||
};
|
||||
|
||||
if ( i > 0 )
|
||||
o.complete = null;
|
||||
|
||||
return o;
|
||||
};
|
||||
|
||||
jQuery.queue = {};
|
||||
|
||||
jQuery.dequeue = function(elem,type){
|
||||
type = type || "fx";
|
||||
|
||||
if ( elem.queue && elem.queue[type] ) {
|
||||
// Remove self
|
||||
elem.queue[type].shift();
|
||||
|
||||
// Get next function
|
||||
var f = elem.queue[type][0];
|
||||
|
||||
if ( f )
|
||||
f.apply( elem );
|
||||
}
|
||||
};
|
||||
|
||||
jQuery.prototype.queue = function(type,fn){
|
||||
/**
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
queue: function(type,fn){
|
||||
if ( !fn ) {
|
||||
fn = type;
|
||||
type = "fx";
|
||||
|
@ -151,24 +114,68 @@ jQuery.prototype.queue = function(type,fn){
|
|||
if ( this.queue[type].length == 1 )
|
||||
fn.apply(this);
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
jQuery.setAuto = function(e,p) {
|
||||
});
|
||||
|
||||
jQuery.extend({
|
||||
|
||||
setAuto: function(e,p) {
|
||||
var a = e.style[p];
|
||||
var o = jQuery.css(e,p);
|
||||
e.style[p] = "auto";
|
||||
var n = jQuery.css(e,p);
|
||||
if ( o != n )
|
||||
e.style[p] = a;
|
||||
},
|
||||
|
||||
speed: function(s,o,i) {
|
||||
o = o || {};
|
||||
|
||||
if ( o.constructor == Function )
|
||||
o = { complete: o };
|
||||
|
||||
var ss = { slow: 600, fast: 200 };
|
||||
o.duration = (s && s.constructor == Number ? s : ss[s]) || 400;
|
||||
|
||||
// Queueing
|
||||
o.oldComplete = o.complete;
|
||||
o.complete = function(){
|
||||
jQuery.dequeue(this, "fx");
|
||||
if ( o.oldComplete && o.oldComplete.constructor == Function )
|
||||
o.oldComplete.apply( this );
|
||||
};
|
||||
|
||||
if ( i > 0 )
|
||||
o.complete = null;
|
||||
|
||||
return o;
|
||||
},
|
||||
|
||||
queue: {},
|
||||
|
||||
dequeue: function(elem,type){
|
||||
type = type || "fx";
|
||||
|
||||
if ( elem.queue && elem.queue[type] ) {
|
||||
// Remove self
|
||||
elem.queue[type].shift();
|
||||
|
||||
// Get next function
|
||||
var f = elem.queue[type][0];
|
||||
|
||||
if ( f )
|
||||
f.apply( elem );
|
||||
}
|
||||
},
|
||||
|
||||
/*
|
||||
* I originally wrote fx() as a clone of moo.fx and in the process
|
||||
* of making it small in size the code became illegible to sane
|
||||
* people. You've been warned.
|
||||
*/
|
||||
|
||||
jQuery.fx = function( elem, options, prop ){
|
||||
fx: function( elem, options, prop ){
|
||||
|
||||
var z = this;
|
||||
|
||||
|
@ -233,7 +240,7 @@ jQuery.fx = function( elem, options, prop ){
|
|||
};
|
||||
|
||||
// IE has trouble with opacity if it doesn't have layout
|
||||
if ( jQuery.browser == "msie" && !z.el.currentStyle.hasLayout )
|
||||
if ( jQuery.browser.msie && !z.el.currentStyle.hasLayout )
|
||||
y.zoom = 1;
|
||||
|
||||
// Remember the overflow of the element
|
||||
|
@ -284,4 +291,6 @@ jQuery.fx = function( elem, options, prop ){
|
|||
}
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
});
|
||||
|
|
32
jquery/jquery.js
vendored
32
jquery/jquery.js
vendored
|
@ -457,9 +457,9 @@ jQuery.fn = jQuery.prototype = {
|
|||
},
|
||||
|
||||
/**
|
||||
* End all 'destructive' operations, reverting the list of matched elements.
|
||||
* After an end operation, the list of matched elements will revert to the last
|
||||
* state of matched elements.
|
||||
* End the most recent 'destructive' operation, reverting the list of matched elements
|
||||
* back to its previous state. After an end operation, the list of matched elements will
|
||||
* revert to the last state of matched elements.
|
||||
*
|
||||
* @example $("p").find("span").end();
|
||||
* @before <p><span>Hello</span>, how are you?</p>
|
||||
|
@ -472,6 +472,22 @@ jQuery.fn = jQuery.prototype = {
|
|||
return this.get( this.stack.pop() );
|
||||
},
|
||||
|
||||
/**
|
||||
* Searches for all elements that match the specified expression.
|
||||
* This method is the optimal way of finding additional descendant
|
||||
* elements with which to process.
|
||||
*
|
||||
* All searching is done using a jQuery expression. The expression can be
|
||||
* written using CSS 1-3 Selector sytax, or basic XPath.
|
||||
*
|
||||
* @example $("p").find("span");
|
||||
* @before <p><span>Hello</span>, how are you?</p>
|
||||
* @result $("p").find("span") == [ <span>Hello</span> ]
|
||||
*
|
||||
* @name find
|
||||
* @type jQuery
|
||||
* @param String expr An expression to search with.
|
||||
*/
|
||||
find: function(t) {
|
||||
return this.pushStack( jQuery.map( this, function(a){
|
||||
return jQuery.find(t,a);
|
||||
|
@ -515,7 +531,7 @@ jQuery.fn = jQuery.prototype = {
|
|||
},
|
||||
|
||||
/**
|
||||
* :-P
|
||||
*
|
||||
*
|
||||
* @private
|
||||
* @name domManip
|
||||
|
@ -926,7 +942,7 @@ jQuery.extend({
|
|||
|
||||
if ( m ) {
|
||||
r = ret = jQuery.map( ret, jQuery.token[i+1] );
|
||||
t = jQuery.trim(t).replace( re, "" );
|
||||
t = jQuery.trim( t.replace( re, "" ) );
|
||||
foundToken = true;
|
||||
}
|
||||
}
|
||||
|
@ -1058,10 +1074,14 @@ jQuery.extend({
|
|||
|
||||
// Otherwise, find the expression to execute
|
||||
else {
|
||||
var f = jQuery.expr[m[1]];
|
||||
if ( f.constructor != String )
|
||||
f = jQuery.expr[m[1]][m[2]];
|
||||
|
||||
// Build a custom macro to enclose it
|
||||
eval("f = function(a,i){" +
|
||||
( m[1] == "@" ? "z=jQuery.attr(a,m[3]);" : "" ) +
|
||||
"return " + jQuery.expr[m[1]] + "}");
|
||||
"return " + f + "}");
|
||||
|
||||
// Execute it against the current filter
|
||||
r = g( r, f );
|
||||
|
|
Loading…
Reference in a new issue