mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-17 14:38:41 -04:00
15390 lines
500 KiB
JavaScript
15390 lines
500 KiB
JavaScript
/*!
|
||
* jQuery JavaScript Library v1.8.3
|
||
* http://jquery.com/
|
||
*
|
||
* Includes Sizzle.js
|
||
* http://sizzlejs.com/
|
||
*
|
||
* Copyright 2012 jQuery Foundation and other contributors
|
||
* Released under the MIT license
|
||
* http://jquery.org/license
|
||
*
|
||
* Date: Tue Nov 13 2012 08:20:33 GMT-0500 (Eastern Standard Time)
|
||
*/
|
||
(function( window, undefined ) {
|
||
var
|
||
// A central reference to the root jQuery(document)
|
||
rootjQuery,
|
||
|
||
// The deferred used on DOM ready
|
||
readyList,
|
||
|
||
// Use the correct document accordingly with window argument (sandbox)
|
||
document = window.document,
|
||
location = window.location,
|
||
navigator = window.navigator,
|
||
|
||
// Map over jQuery in case of overwrite
|
||
_jQuery = window.jQuery,
|
||
|
||
// Map over the $ in case of overwrite
|
||
_$ = window.$,
|
||
|
||
// Save a reference to some core methods
|
||
core_push = Array.prototype.push,
|
||
core_slice = Array.prototype.slice,
|
||
core_indexOf = Array.prototype.indexOf,
|
||
core_toString = Object.prototype.toString,
|
||
core_hasOwn = Object.prototype.hasOwnProperty,
|
||
core_trim = String.prototype.trim,
|
||
|
||
// Define a local copy of jQuery
|
||
jQuery = function( selector, context ) {
|
||
// The jQuery object is actually just the init constructor 'enhanced'
|
||
return new jQuery.fn.init( selector, context, rootjQuery );
|
||
},
|
||
|
||
// Used for matching numbers
|
||
core_pnum = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,
|
||
|
||
// Used for detecting and trimming whitespace
|
||
core_rnotwhite = /\S/,
|
||
core_rspace = /\s+/,
|
||
|
||
// Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE)
|
||
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
|
||
|
||
// A simple way to check for HTML strings
|
||
// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
|
||
rquickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,
|
||
|
||
// Match a standalone tag
|
||
rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
|
||
|
||
// JSON RegExp
|
||
rvalidchars = /^[\],:{}\s]*$/,
|
||
rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g,
|
||
rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,
|
||
rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,
|
||
|
||
// Matches dashed string for camelizing
|
||
rmsPrefix = /^-ms-/,
|
||
rdashAlpha = /-([\da-z])/gi,
|
||
|
||
// Used by jQuery.camelCase as callback to replace()
|
||
fcamelCase = function( all, letter ) {
|
||
return ( letter + "" ).toUpperCase();
|
||
},
|
||
|
||
// The ready event handler and self cleanup method
|
||
DOMContentLoaded = function() {
|
||
if ( document.addEventListener ) {
|
||
document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false );
|
||
jQuery.ready();
|
||
} else if ( document.readyState === "complete" ) {
|
||
// we're here because readyState === "complete" in oldIE
|
||
// which is good enough for us to call the dom ready!
|
||
document.detachEvent( "onreadystatechange", DOMContentLoaded );
|
||
jQuery.ready();
|
||
}
|
||
},
|
||
|
||
// [[Class]] -> type pairs
|
||
class2type = {};
|
||
|
||
jQuery.fn = jQuery.prototype = {
|
||
constructor: jQuery,
|
||
init: function( selector, context, rootjQuery ) {
|
||
var match, elem, ret, doc;
|
||
|
||
// Handle $(""), $(null), $(undefined), $(false)
|
||
if ( !selector ) {
|
||
return this;
|
||
}
|
||
|
||
// Handle $(DOMElement)
|
||
if ( selector.nodeType ) {
|
||
this.context = this[0] = selector;
|
||
this.length = 1;
|
||
return this;
|
||
}
|
||
|
||
// Handle HTML strings
|
||
if ( typeof selector === "string" ) {
|
||
if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
|
||
// Assume that strings that start and end with <> are HTML and skip the regex check
|
||
match = [ null, selector, null ];
|
||
|
||
} else {
|
||
match = rquickExpr.exec( selector );
|
||
}
|
||
|
||
// Match html or make sure no context is specified for #id
|
||
if ( match && (match[1] || !context) ) {
|
||
|
||
// HANDLE: $(html) -> $(array)
|
||
if ( match[1] ) {
|
||
context = context instanceof jQuery ? context[0] : context;
|
||
doc = ( context && context.nodeType ? context.ownerDocument || context : document );
|
||
|
||
// scripts is true for back-compat
|
||
selector = jQuery.parseHTML( match[1], doc, true );
|
||
if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
|
||
this.attr.call( selector, context, true );
|
||
}
|
||
|
||
return jQuery.merge( this, selector );
|
||
|
||
// HANDLE: $(#id)
|
||
} else {
|
||
elem = document.getElementById( match[2] );
|
||
|
||
// Check parentNode to catch when Blackberry 4.6 returns
|
||
// nodes that are no longer in the document #6963
|
||
if ( elem && elem.parentNode ) {
|
||
// Handle the case where IE and Opera return items
|
||
// by name instead of ID
|
||
if ( elem.id !== match[2] ) {
|
||
return rootjQuery.find( selector );
|
||
}
|
||
|
||
// Otherwise, we inject the element directly into the jQuery object
|
||
this.length = 1;
|
||
this[0] = elem;
|
||
}
|
||
|
||
this.context = document;
|
||
this.selector = selector;
|
||
return this;
|
||
}
|
||
|
||
// HANDLE: $(expr, $(...))
|
||
} else if ( !context || context.jquery ) {
|
||
return ( context || rootjQuery ).find( selector );
|
||
|
||
// HANDLE: $(expr, context)
|
||
// (which is just equivalent to: $(context).find(expr)
|
||
} else {
|
||
return this.constructor( context ).find( selector );
|
||
}
|
||
|
||
// HANDLE: $(function)
|
||
// Shortcut for document ready
|
||
} else if ( jQuery.isFunction( selector ) ) {
|
||
return rootjQuery.ready( selector );
|
||
}
|
||
|
||
if ( selector.selector !== undefined ) {
|
||
this.selector = selector.selector;
|
||
this.context = selector.context;
|
||
}
|
||
|
||
return jQuery.makeArray( selector, this );
|
||
},
|
||
|
||
// Start with an empty selector
|
||
selector: "",
|
||
|
||
// The current version of jQuery being used
|
||
jquery: "1.8.3",
|
||
|
||
// The default length of a jQuery object is 0
|
||
length: 0,
|
||
|
||
// The number of elements contained in the matched element set
|
||
size: function() {
|
||
return this.length;
|
||
},
|
||
|
||
toArray: function() {
|
||
return core_slice.call( this );
|
||
},
|
||
|
||
// Get the Nth element in the matched element set OR
|
||
// Get the whole matched element set as a clean array
|
||
get: function( num ) {
|
||
return num == null ?
|
||
|
||
// Return a 'clean' array
|
||
this.toArray() :
|
||
|
||
// Return just the object
|
||
( num < 0 ? this[ this.length + num ] : this[ num ] );
|
||
},
|
||
|
||
// Take an array of elements and push it onto the stack
|
||
// (returning the new matched element set)
|
||
pushStack: function( elems, name, selector ) {
|
||
|
||
// Build a new jQuery matched element set
|
||
var ret = jQuery.merge( this.constructor(), elems );
|
||
|
||
// Add the old object onto the stack (as a reference)
|
||
ret.prevObject = this;
|
||
|
||
ret.context = this.context;
|
||
|
||
if ( name === "find" ) {
|
||
ret.selector = this.selector + ( this.selector ? " " : "" ) + selector;
|
||
} else if ( name ) {
|
||
ret.selector = this.selector + "." + name + "(" + selector + ")";
|
||
}
|
||
|
||
// Return the newly-formed element set
|
||
return ret;
|
||
},
|
||
|
||
// Execute a callback for every element in the matched set.
|
||
// (You can seed the arguments with an array of args, but this is
|
||
// only used internally.)
|
||
each: function( callback, args ) {
|
||
return jQuery.each( this, callback, args );
|
||
},
|
||
|
||
ready: function( fn ) {
|
||
// Add the callback
|
||
jQuery.ready.promise().done( fn );
|
||
|
||
return this;
|
||
},
|
||
|
||
eq: function( i ) {
|
||
i = +i;
|
||
return i === -1 ?
|
||
this.slice( i ) :
|
||
this.slice( i, i + 1 );
|
||
},
|
||
|
||
first: function() {
|
||
return this.eq( 0 );
|
||
},
|
||
|
||
last: function() {
|
||
return this.eq( -1 );
|
||
},
|
||
|
||
slice: function() {
|
||
return this.pushStack( core_slice.apply( this, arguments ),
|
||
"slice", core_slice.call(arguments).join(",") );
|
||
},
|
||
|
||
map: function( callback ) {
|
||
return this.pushStack( jQuery.map(this, function( elem, i ) {
|
||
return callback.call( elem, i, elem );
|
||
}));
|
||
},
|
||
|
||
end: function() {
|
||
return this.prevObject || this.constructor(null);
|
||
},
|
||
|
||
// For internal use only.
|
||
// Behaves like an Array's method, not like a jQuery method.
|
||
push: core_push,
|
||
sort: [].sort,
|
||
splice: [].splice
|
||
};
|
||
|
||
// Give the init function the jQuery prototype for later instantiation
|
||
jQuery.fn.init.prototype = jQuery.fn;
|
||
|
||
jQuery.extend = jQuery.fn.extend = function() {
|
||
var options, name, src, copy, copyIsArray, clone,
|
||
target = arguments[0] || {},
|
||
i = 1,
|
||
length = arguments.length,
|
||
deep = false;
|
||
|
||
// Handle a deep copy situation
|
||
if ( typeof target === "boolean" ) {
|
||
deep = target;
|
||
target = arguments[1] || {};
|
||
// skip the boolean and the target
|
||
i = 2;
|
||
}
|
||
|
||
// Handle case when target is a string or something (possible in deep copy)
|
||
if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
|
||
target = {};
|
||
}
|
||
|
||
// extend jQuery itself if only one argument is passed
|
||
if ( length === i ) {
|
||
target = this;
|
||
--i;
|
||
}
|
||
|
||
for ( ; i < length; i++ ) {
|
||
// Only deal with non-null/undefined values
|
||
if ( (options = arguments[ i ]) != null ) {
|
||
// Extend the base object
|
||
for ( name in options ) {
|
||
src = target[ name ];
|
||
copy = options[ name ];
|
||
|
||
// Prevent never-ending loop
|
||
if ( target === copy ) {
|
||
continue;
|
||
}
|
||
|
||
// Recurse if we're merging plain objects or arrays
|
||
if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
|
||
if ( copyIsArray ) {
|
||
copyIsArray = false;
|
||
clone = src && jQuery.isArray(src) ? src : [];
|
||
|
||
} else {
|
||
clone = src && jQuery.isPlainObject(src) ? src : {};
|
||
}
|
||
|
||
// Never move original objects, clone them
|
||
target[ name ] = jQuery.extend( deep, clone, copy );
|
||
|
||
// Don't bring in undefined values
|
||
} else if ( copy !== undefined ) {
|
||
target[ name ] = copy;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Return the modified object
|
||
return target;
|
||
};
|
||
|
||
jQuery.extend({
|
||
noConflict: function( deep ) {
|
||
if ( window.$ === jQuery ) {
|
||
window.$ = _$;
|
||
}
|
||
|
||
if ( deep && window.jQuery === jQuery ) {
|
||
window.jQuery = _jQuery;
|
||
}
|
||
|
||
return jQuery;
|
||
},
|
||
|
||
// Is the DOM ready to be used? Set to true once it occurs.
|
||
isReady: false,
|
||
|
||
// A counter to track how many items to wait for before
|
||
// the ready event fires. See #6781
|
||
readyWait: 1,
|
||
|
||
// Hold (or release) the ready event
|
||
holdReady: function( hold ) {
|
||
if ( hold ) {
|
||
jQuery.readyWait++;
|
||
} else {
|
||
jQuery.ready( true );
|
||
}
|
||
},
|
||
|
||
// Handle when the DOM is ready
|
||
ready: function( wait ) {
|
||
|
||
// Abort if there are pending holds or we're already ready
|
||
if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
|
||
return;
|
||
}
|
||
|
||
// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
|
||
if ( !document.body ) {
|
||
return setTimeout( jQuery.ready, 1 );
|
||
}
|
||
|
||
// Remember that the DOM is ready
|
||
jQuery.isReady = true;
|
||
|
||
// If a normal DOM Ready event fired, decrement, and wait if need be
|
||
if ( wait !== true && --jQuery.readyWait > 0 ) {
|
||
return;
|
||
}
|
||
|
||
// If there are functions bound, to execute
|
||
readyList.resolveWith( document, [ jQuery ] );
|
||
|
||
// Trigger any bound ready events
|
||
if ( jQuery.fn.trigger ) {
|
||
jQuery( document ).trigger("ready").off("ready");
|
||
}
|
||
},
|
||
|
||
// See test/unit/core.js for details concerning isFunction.
|
||
// Since version 1.3, DOM methods and functions like alert
|
||
// aren't supported. They return false on IE (#2968).
|
||
isFunction: function( obj ) {
|
||
return jQuery.type(obj) === "function";
|
||
},
|
||
|
||
isArray: Array.isArray || function( obj ) {
|
||
return jQuery.type(obj) === "array";
|
||
},
|
||
|
||
isWindow: function( obj ) {
|
||
return obj != null && obj == obj.window;
|
||
},
|
||
|
||
isNumeric: function( obj ) {
|
||
return !isNaN( parseFloat(obj) ) && isFinite( obj );
|
||
},
|
||
|
||
type: function( obj ) {
|
||
return obj == null ?
|
||
String( obj ) :
|
||
class2type[ core_toString.call(obj) ] || "object";
|
||
},
|
||
|
||
isPlainObject: function( obj ) {
|
||
// Must be an Object.
|
||
// Because of IE, we also have to check the presence of the constructor property.
|
||
// Make sure that DOM nodes and window objects don't pass through, as well
|
||
if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
|
||
return false;
|
||
}
|
||
|
||
try {
|
||
// Not own constructor property must be Object
|
||
if ( obj.constructor &&
|
||
!core_hasOwn.call(obj, "constructor") &&
|
||
!core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) {
|
||
return false;
|
||
}
|
||
} catch ( e ) {
|
||
// IE8,9 Will throw exceptions on certain host objects #9897
|
||
return false;
|
||
}
|
||
|
||
// Own properties are enumerated firstly, so to speed up,
|
||
// if last one is own, then all properties are own.
|
||
|
||
var key;
|
||
for ( key in obj ) {}
|
||
|
||
return key === undefined || core_hasOwn.call( obj, key );
|
||
},
|
||
|
||
isEmptyObject: function( obj ) {
|
||
var name;
|
||
for ( name in obj ) {
|
||
return false;
|
||
}
|
||
return true;
|
||
},
|
||
|
||
error: function( msg ) {
|
||
throw new Error( msg );
|
||
},
|
||
|
||
// data: string of html
|
||
// context (optional): If specified, the fragment will be created in this context, defaults to document
|
||
// scripts (optional): If true, will include scripts passed in the html string
|
||
parseHTML: function( data, context, scripts ) {
|
||
var parsed;
|
||
if ( !data || typeof data !== "string" ) {
|
||
return null;
|
||
}
|
||
if ( typeof context === "boolean" ) {
|
||
scripts = context;
|
||
context = 0;
|
||
}
|
||
context = context || document;
|
||
|
||
// Single tag
|
||
if ( (parsed = rsingleTag.exec( data )) ) {
|
||
return [ context.createElement( parsed[1] ) ];
|
||
}
|
||
|
||
parsed = jQuery.buildFragment( [ data ], context, scripts ? null : [] );
|
||
return jQuery.merge( [],
|
||
(parsed.cacheable ? jQuery.clone( parsed.fragment ) : parsed.fragment).childNodes );
|
||
},
|
||
|
||
parseJSON: function( data ) {
|
||
if ( !data || typeof data !== "string") {
|
||
return null;
|
||
}
|
||
|
||
// Make sure leading/trailing whitespace is removed (IE can't handle it)
|
||
data = jQuery.trim( data );
|
||
|
||
// Attempt to parse using the native JSON parser first
|
||
if ( window.JSON && window.JSON.parse ) {
|
||
return window.JSON.parse( data );
|
||
}
|
||
|
||
// Make sure the incoming data is actual JSON
|
||
// Logic borrowed from http://json.org/json2.js
|
||
if ( rvalidchars.test( data.replace( rvalidescape, "@" )
|
||
.replace( rvalidtokens, "]" )
|
||
.replace( rvalidbraces, "")) ) {
|
||
|
||
return ( new Function( "return " + data ) )();
|
||
|
||
}
|
||
jQuery.error( "Invalid JSON: " + data );
|
||
},
|
||
|
||
// Cross-browser xml parsing
|
||
parseXML: function( data ) {
|
||
var xml, tmp;
|
||
if ( !data || typeof data !== "string" ) {
|
||
return null;
|
||
}
|
||
try {
|
||
if ( window.DOMParser ) { // Standard
|
||
tmp = new DOMParser();
|
||
xml = tmp.parseFromString( data , "text/xml" );
|
||
} else { // IE
|
||
xml = new ActiveXObject( "Microsoft.XMLDOM" );
|
||
xml.async = "false";
|
||
xml.loadXML( data );
|
||
}
|
||
} catch( e ) {
|
||
xml = undefined;
|
||
}
|
||
if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) {
|
||
jQuery.error( "Invalid XML: " + data );
|
||
}
|
||
return xml;
|
||
},
|
||
|
||
noop: function() {},
|
||
|
||
// Evaluates a script in a global context
|
||
// Workarounds based on findings by Jim Driscoll
|
||
// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
|
||
globalEval: function( data ) {
|
||
if ( data && core_rnotwhite.test( data ) ) {
|
||
// We use execScript on Internet Explorer
|
||
// We use an anonymous function so that context is window
|
||
// rather than jQuery in Firefox
|
||
( window.execScript || function( data ) {
|
||
window[ "eval" ].call( window, data );
|
||
} )( data );
|
||
}
|
||
},
|
||
|
||
// Convert dashed to camelCase; used by the css and data modules
|
||
// Microsoft forgot to hump their vendor prefix (#9572)
|
||
camelCase: function( string ) {
|
||
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
|
||
},
|
||
|
||
nodeName: function( elem, name ) {
|
||
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
|
||
},
|
||
|
||
// args is for internal usage only
|
||
each: function( obj, callback, args ) {
|
||
var name,
|
||
i = 0,
|
||
length = obj.length,
|
||
isObj = length === undefined || jQuery.isFunction( obj );
|
||
|
||
if ( args ) {
|
||
if ( isObj ) {
|
||
for ( name in obj ) {
|
||
if ( callback.apply( obj[ name ], args ) === false ) {
|
||
break;
|
||
}
|
||
}
|
||
} else {
|
||
for ( ; i < length; ) {
|
||
if ( callback.apply( obj[ i++ ], args ) === false ) {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
// A special, fast, case for the most common use of each
|
||
} else {
|
||
if ( isObj ) {
|
||
for ( name in obj ) {
|
||
if ( callback.call( obj[ name ], name, obj[ name ] ) === false ) {
|
||
break;
|
||
}
|
||
}
|
||
} else {
|
||
for ( ; i < length; ) {
|
||
if ( callback.call( obj[ i ], i, obj[ i++ ] ) === false ) {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return obj;
|
||
},
|
||
|
||
// Use native String.trim function wherever possible
|
||
trim: core_trim && !core_trim.call("\uFEFF\xA0") ?
|
||
function( text ) {
|
||
return text == null ?
|
||
"" :
|
||
core_trim.call( text );
|
||
} :
|
||
|
||
// Otherwise use our own trimming functionality
|
||
function( text ) {
|
||
return text == null ?
|
||
"" :
|
||
( text + "" ).replace( rtrim, "" );
|
||
},
|
||
|
||
// results is for internal usage only
|
||
makeArray: function( arr, results ) {
|
||
var type,
|
||
ret = results || [];
|
||
|
||
if ( arr != null ) {
|
||
// The window, strings (and functions) also have 'length'
|
||
// Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930
|
||
type = jQuery.type( arr );
|
||
|
||
if ( arr.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( arr ) ) {
|
||
core_push.call( ret, arr );
|
||
} else {
|
||
jQuery.merge( ret, arr );
|
||
}
|
||
}
|
||
|
||
return ret;
|
||
},
|
||
|
||
inArray: function( elem, arr, i ) {
|
||
var len;
|
||
|
||
if ( arr ) {
|
||
if ( core_indexOf ) {
|
||
return core_indexOf.call( arr, elem, i );
|
||
}
|
||
|
||
len = arr.length;
|
||
i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;
|
||
|
||
for ( ; i < len; i++ ) {
|
||
// Skip accessing in sparse arrays
|
||
if ( i in arr && arr[ i ] === elem ) {
|
||
return i;
|
||
}
|
||
}
|
||
}
|
||
|
||
return -1;
|
||
},
|
||
|
||
merge: function( first, second ) {
|
||
var l = second.length,
|
||
i = first.length,
|
||
j = 0;
|
||
|
||
if ( typeof l === "number" ) {
|
||
for ( ; j < l; j++ ) {
|
||
first[ i++ ] = second[ j ];
|
||
}
|
||
|
||
} else {
|
||
while ( second[j] !== undefined ) {
|
||
first[ i++ ] = second[ j++ ];
|
||
}
|
||
}
|
||
|
||
first.length = i;
|
||
|
||
return first;
|
||
},
|
||
|
||
grep: function( elems, callback, inv ) {
|
||
var retVal,
|
||
ret = [],
|
||
i = 0,
|
||
length = elems.length;
|
||
inv = !!inv;
|
||
|
||
// Go through the array, only saving the items
|
||
// that pass the validator function
|
||
for ( ; i < length; i++ ) {
|
||
retVal = !!callback( elems[ i ], i );
|
||
if ( inv !== retVal ) {
|
||
ret.push( elems[ i ] );
|
||
}
|
||
}
|
||
|
||
return ret;
|
||
},
|
||
|
||
// arg is for internal usage only
|
||
map: function( elems, callback, arg ) {
|
||
var value, key,
|
||
ret = [],
|
||
i = 0,
|
||
length = elems.length,
|
||
// jquery objects are treated as arrays
|
||
isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ;
|
||
|
||
// Go through the array, translating each of the items to their
|
||
if ( isArray ) {
|
||
for ( ; i < length; i++ ) {
|
||
value = callback( elems[ i ], i, arg );
|
||
|
||
if ( value != null ) {
|
||
ret[ ret.length ] = value;
|
||
}
|
||
}
|
||
|
||
// Go through every key on the object,
|
||
} else {
|
||
for ( key in elems ) {
|
||
value = callback( elems[ key ], key, arg );
|
||
|
||
if ( value != null ) {
|
||
ret[ ret.length ] = value;
|
||
}
|
||
}
|
||
}
|
||
|
||
// Flatten any nested arrays
|
||
return ret.concat.apply( [], ret );
|
||
},
|
||
|
||
// A global GUID counter for objects
|
||
guid: 1,
|
||
|
||
// Bind a function to a context, optionally partially applying any
|
||
// arguments.
|
||
proxy: function( fn, context ) {
|
||
var tmp, args, proxy;
|
||
|
||
if ( typeof context === "string" ) {
|
||
tmp = fn[ context ];
|
||
context = fn;
|
||
fn = tmp;
|
||
}
|
||
|
||
// Quick check to determine if target is callable, in the spec
|
||
// this throws a TypeError, but we will just return undefined.
|
||
if ( !jQuery.isFunction( fn ) ) {
|
||
return undefined;
|
||
}
|
||
|
||
// Simulated bind
|
||
args = core_slice.call( arguments, 2 );
|
||
proxy = function() {
|
||
return fn.apply( context, args.concat( core_slice.call( arguments ) ) );
|
||
};
|
||
|
||
// Set the guid of unique handler to the same of original handler, so it can be removed
|
||
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
|
||
|
||
return proxy;
|
||
},
|
||
|
||
// Multifunctional method to get and set values of a collection
|
||
// The value/s can optionally be executed if it's a function
|
||
access: function( elems, fn, key, value, chainable, emptyGet, pass ) {
|
||
var exec,
|
||
bulk = key == null,
|
||
i = 0,
|
||
length = elems.length;
|
||
|
||
// Sets many values
|
||
if ( key && typeof key === "object" ) {
|
||
for ( i in key ) {
|
||
jQuery.access( elems, fn, i, key[i], 1, emptyGet, value );
|
||
}
|
||
chainable = 1;
|
||
|
||
// Sets one value
|
||
} else if ( value !== undefined ) {
|
||
// Optionally, function values get executed if exec is true
|
||
exec = pass === undefined && jQuery.isFunction( value );
|
||
|
||
if ( bulk ) {
|
||
// Bulk operations only iterate when executing function values
|
||
if ( exec ) {
|
||
exec = fn;
|
||
fn = function( elem, key, value ) {
|
||
return exec.call( jQuery( elem ), value );
|
||
};
|
||
|
||
// Otherwise they run against the entire set
|
||
} else {
|
||
fn.call( elems, value );
|
||
fn = null;
|
||
}
|
||
}
|
||
|
||
if ( fn ) {
|
||
for (; i < length; i++ ) {
|
||
fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass );
|
||
}
|
||
}
|
||
|
||
chainable = 1;
|
||
}
|
||
|
||
return chainable ?
|
||
elems :
|
||
|
||
// Gets
|
||
bulk ?
|
||
fn.call( elems ) :
|
||
length ? fn( elems[0], key ) : emptyGet;
|
||
},
|
||
|
||
now: function() {
|
||
return ( new Date() ).getTime();
|
||
}
|
||
});
|
||
|
||
jQuery.ready.promise = function( obj ) {
|
||
if ( !readyList ) {
|
||
|
||
readyList = jQuery.Deferred();
|
||
|
||
// Catch cases where $(document).ready() is called after the browser event has already occurred.
|
||
// we once tried to use readyState "interactive" here, but it caused issues like the one
|
||
// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
|
||
if ( document.readyState === "complete" ) {
|
||
// Handle it asynchronously to allow scripts the opportunity to delay ready
|
||
setTimeout( jQuery.ready, 1 );
|
||
|
||
// Standards-based browsers support DOMContentLoaded
|
||
} else if ( document.addEventListener ) {
|
||
// Use the handy event callback
|
||
document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false );
|
||
|
||
// A fallback to window.onload, that will always work
|
||
window.addEventListener( "load", jQuery.ready, false );
|
||
|
||
// If IE event model is used
|
||
} else {
|
||
// Ensure firing before onload, maybe late but safe also for iframes
|
||
document.attachEvent( "onreadystatechange", DOMContentLoaded );
|
||
|
||
// A fallback to window.onload, that will always work
|
||
window.attachEvent( "onload", jQuery.ready );
|
||
|
||
// If IE and not a frame
|
||
// continually check to see if the document is ready
|
||
var top = false;
|
||
|
||
try {
|
||
top = window.frameElement == null && document.documentElement;
|
||
} catch(e) {}
|
||
|
||
if ( top && top.doScroll ) {
|
||
(function doScrollCheck() {
|
||
if ( !jQuery.isReady ) {
|
||
|
||
try {
|
||
// Use the trick by Diego Perini
|
||
// http://javascript.nwbox.com/IEContentLoaded/
|
||
top.doScroll("left");
|
||
} catch(e) {
|
||
return setTimeout( doScrollCheck, 50 );
|
||
}
|
||
|
||
// and execute any waiting functions
|
||
jQuery.ready();
|
||
}
|
||
})();
|
||
}
|
||
}
|
||
}
|
||
return readyList.promise( obj );
|
||
};
|
||
|
||
// Populate the class2type map
|
||
jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) {
|
||
class2type[ "[object " + name + "]" ] = name.toLowerCase();
|
||
});
|
||
|
||
// All jQuery objects should point back to these
|
||
rootjQuery = jQuery(document);
|
||
// String to Object options format cache
|
||
var optionsCache = {};
|
||
|
||
// Convert String-formatted options into Object-formatted ones and store in cache
|
||
function createOptions( options ) {
|
||
var object = optionsCache[ options ] = {};
|
||
jQuery.each( options.split( core_rspace ), function( _, flag ) {
|
||
object[ flag ] = true;
|
||
});
|
||
return object;
|
||
}
|
||
|
||
/*
|
||
* Create a callback list using the following parameters:
|
||
*
|
||
* options: an optional list of space-separated options that will change how
|
||
* the callback list behaves or a more traditional option object
|
||
*
|
||
* By default a callback list will act like an event callback list and can be
|
||
* "fired" multiple times.
|
||
*
|
||
* Possible options:
|
||
*
|
||
* once: will ensure the callback list can only be fired once (like a Deferred)
|
||
*
|
||
* memory: will keep track of previous values and will call any callback added
|
||
* after the list has been fired right away with the latest "memorized"
|
||
* values (like a Deferred)
|
||
*
|
||
* unique: will ensure a callback can only be added once (no duplicate in the list)
|
||
*
|
||
* stopOnFalse: interrupt callings when a callback returns false
|
||
*
|
||
*/
|
||
jQuery.Callbacks = function( options ) {
|
||
|
||
// Convert options from String-formatted to Object-formatted if needed
|
||
// (we check in cache first)
|
||
options = typeof options === "string" ?
|
||
( optionsCache[ options ] || createOptions( options ) ) :
|
||
jQuery.extend( {}, options );
|
||
|
||
var // Last fire value (for non-forgettable lists)
|
||
memory,
|
||
// Flag to know if list was already fired
|
||
fired,
|
||
// Flag to know if list is currently firing
|
||
firing,
|
||
// First callback to fire (used internally by add and fireWith)
|
||
firingStart,
|
||
// End of the loop when firing
|
||
firingLength,
|
||
// Index of currently firing callback (modified by remove if needed)
|
||
firingIndex,
|
||
// Actual callback list
|
||
list = [],
|
||
// Stack of fire calls for repeatable lists
|
||
stack = !options.once && [],
|
||
// Fire callbacks
|
||
fire = function( data ) {
|
||
memory = options.memory && data;
|
||
fired = true;
|
||
firingIndex = firingStart || 0;
|
||
firingStart = 0;
|
||
firingLength = list.length;
|
||
firing = true;
|
||
for ( ; list && firingIndex < firingLength; firingIndex++ ) {
|
||
if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
|
||
memory = false; // To prevent further calls using add
|
||
break;
|
||
}
|
||
}
|
||
firing = false;
|
||
if ( list ) {
|
||
if ( stack ) {
|
||
if ( stack.length ) {
|
||
fire( stack.shift() );
|
||
}
|
||
} else if ( memory ) {
|
||
list = [];
|
||
} else {
|
||
self.disable();
|
||
}
|
||
}
|
||
},
|
||
// Actual Callbacks object
|
||
self = {
|
||
// Add a callback or a collection of callbacks to the list
|
||
add: function() {
|
||
if ( list ) {
|
||
// First, we save the current length
|
||
var start = list.length;
|
||
(function add( args ) {
|
||
jQuery.each( args, function( _, arg ) {
|
||
var type = jQuery.type( arg );
|
||
if ( type === "function" ) {
|
||
if ( !options.unique || !self.has( arg ) ) {
|
||
list.push( arg );
|
||
}
|
||
} else if ( arg && arg.length && type !== "string" ) {
|
||
// Inspect recursively
|
||
add( arg );
|
||
}
|
||
});
|
||
})( arguments );
|
||
// Do we need to add the callbacks to the
|
||
// current firing batch?
|
||
if ( firing ) {
|
||
firingLength = list.length;
|
||
// With memory, if we're not firing then
|
||
// we should call right away
|
||
} else if ( memory ) {
|
||
firingStart = start;
|
||
fire( memory );
|
||
}
|
||
}
|
||
return this;
|
||
},
|
||
// Remove a callback from the list
|
||
remove: function() {
|
||
if ( list ) {
|
||
jQuery.each( arguments, function( _, arg ) {
|
||
var index;
|
||
while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
|
||
list.splice( index, 1 );
|
||
// Handle firing indexes
|
||
if ( firing ) {
|
||
if ( index <= firingLength ) {
|
||
firingLength--;
|
||
}
|
||
if ( index <= firingIndex ) {
|
||
firingIndex--;
|
||
}
|
||
}
|
||
}
|
||
});
|
||
}
|
||
return this;
|
||
},
|
||
// Control if a given callback is in the list
|
||
has: function( fn ) {
|
||
return jQuery.inArray( fn, list ) > -1;
|
||
},
|
||
// Remove all callbacks from the list
|
||
empty: function() {
|
||
list = [];
|
||
return this;
|
||
},
|
||
// Have the list do nothing anymore
|
||
disable: function() {
|
||
list = stack = memory = undefined;
|
||
return this;
|
||
},
|
||
// Is it disabled?
|
||
disabled: function() {
|
||
return !list;
|
||
},
|
||
// Lock the list in its current state
|
||
lock: function() {
|
||
stack = undefined;
|
||
if ( !memory ) {
|
||
self.disable();
|
||
}
|
||
return this;
|
||
},
|
||
// Is it locked?
|
||
locked: function() {
|
||
return !stack;
|
||
},
|
||
// Call all callbacks with the given context and arguments
|
||
fireWith: function( context, args ) {
|
||
args = args || [];
|
||
args = [ context, args.slice ? args.slice() : args ];
|
||
if ( list && ( !fired || stack ) ) {
|
||
if ( firing ) {
|
||
stack.push( args );
|
||
} else {
|
||
fire( args );
|
||
}
|
||
}
|
||
return this;
|
||
},
|
||
// Call all the callbacks with the given arguments
|
||
fire: function() {
|
||
self.fireWith( this, arguments );
|
||
return this;
|
||
},
|
||
// To know if the callbacks have already been called at least once
|
||
fired: function() {
|
||
return !!fired;
|
||
}
|
||
};
|
||
|
||
return self;
|
||
};
|
||
jQuery.extend({
|
||
|
||
Deferred: function( func ) {
|
||
var tuples = [
|
||
// action, add listener, listener list, final state
|
||
[ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
|
||
[ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
|
||
[ "notify", "progress", jQuery.Callbacks("memory") ]
|
||
],
|
||
state = "pending",
|
||
promise = {
|
||
state: function() {
|
||
return state;
|
||
},
|
||
always: function() {
|
||
deferred.done( arguments ).fail( arguments );
|
||
return this;
|
||
},
|
||
then: function( /* fnDone, fnFail, fnProgress */ ) {
|
||
var fns = arguments;
|
||
return jQuery.Deferred(function( newDefer ) {
|
||
jQuery.each( tuples, function( i, tuple ) {
|
||
var action = tuple[ 0 ],
|
||
fn = fns[ i ];
|
||
// deferred[ done | fail | progress ] for forwarding actions to newDefer
|
||
deferred[ tuple[1] ]( jQuery.isFunction( fn ) ?
|
||
function() {
|
||
var returned = fn.apply( this, arguments );
|
||
if ( returned && jQuery.isFunction( returned.promise ) ) {
|
||
returned.promise()
|
||
.done( newDefer.resolve )
|
||
.fail( newDefer.reject )
|
||
.progress( newDefer.notify );
|
||
} else {
|
||
newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] );
|
||
}
|
||
} :
|
||
newDefer[ action ]
|
||
);
|
||
});
|
||
fns = null;
|
||
}).promise();
|
||
},
|
||
// Get a promise for this deferred
|
||
// If obj is provided, the promise aspect is added to the object
|
||
promise: function( obj ) {
|
||
return obj != null ? jQuery.extend( obj, promise ) : promise;
|
||
}
|
||
},
|
||
deferred = {};
|
||
|
||
// Keep pipe for back-compat
|
||
promise.pipe = promise.then;
|
||
|
||
// Add list-specific methods
|
||
jQuery.each( tuples, function( i, tuple ) {
|
||
var list = tuple[ 2 ],
|
||
stateString = tuple[ 3 ];
|
||
|
||
// promise[ done | fail | progress ] = list.add
|
||
promise[ tuple[1] ] = list.add;
|
||
|
||
// Handle state
|
||
if ( stateString ) {
|
||
list.add(function() {
|
||
// state = [ resolved | rejected ]
|
||
state = stateString;
|
||
|
||
// [ reject_list | resolve_list ].disable; progress_list.lock
|
||
}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
|
||
}
|
||
|
||
// deferred[ resolve | reject | notify ] = list.fire
|
||
deferred[ tuple[0] ] = list.fire;
|
||
deferred[ tuple[0] + "With" ] = list.fireWith;
|
||
});
|
||
|
||
// Make the deferred a promise
|
||
promise.promise( deferred );
|
||
|
||
// Call given func if any
|
||
if ( func ) {
|
||
func.call( deferred, deferred );
|
||
}
|
||
|
||
// All done!
|
||
return deferred;
|
||
},
|
||
|
||
// Deferred helper
|
||
when: function( subordinate /* , ..., subordinateN */ ) {
|
||
var i = 0,
|
||
resolveValues = core_slice.call( arguments ),
|
||
length = resolveValues.length,
|
||
|
||
// the count of uncompleted subordinates
|
||
remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
|
||
|
||
// the master Deferred. If resolveValues consist of only a single Deferred, just use that.
|
||
deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
|
||
|
||
// Update function for both resolve and progress values
|
||
updateFunc = function( i, contexts, values ) {
|
||
return function( value ) {
|
||
contexts[ i ] = this;
|
||
values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value;
|
||
if( values === progressValues ) {
|
||
deferred.notifyWith( contexts, values );
|
||
} else if ( !( --remaining ) ) {
|
||
deferred.resolveWith( contexts, values );
|
||
}
|
||
};
|
||
},
|
||
|
||
progressValues, progressContexts, resolveContexts;
|
||
|
||
// add listeners to Deferred subordinates; treat others as resolved
|
||
if ( length > 1 ) {
|
||
progressValues = new Array( length );
|
||
progressContexts = new Array( length );
|
||
resolveContexts = new Array( length );
|
||
for ( ; i < length; i++ ) {
|
||
if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
|
||
resolveValues[ i ].promise()
|
||
.done( updateFunc( i, resolveContexts, resolveValues ) )
|
||
.fail( deferred.reject )
|
||
.progress( updateFunc( i, progressContexts, progressValues ) );
|
||
} else {
|
||
--remaining;
|
||
}
|
||
}
|
||
}
|
||
|
||
// if we're not waiting on anything, resolve the master
|
||
if ( !remaining ) {
|
||
deferred.resolveWith( resolveContexts, resolveValues );
|
||
}
|
||
|
||
return deferred.promise();
|
||
}
|
||
});
|
||
jQuery.support = (function() {
|
||
|
||
var support,
|
||
all,
|
||
a,
|
||
select,
|
||
opt,
|
||
input,
|
||
fragment,
|
||
eventName,
|
||
i,
|
||
isSupported,
|
||
clickFn,
|
||
div = document.createElement("div");
|
||
|
||
// Setup
|
||
div.setAttribute( "className", "t" );
|
||
div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
|
||
|
||
// Support tests won't run in some limited or non-browser environments
|
||
all = div.getElementsByTagName("*");
|
||
a = div.getElementsByTagName("a")[ 0 ];
|
||
if ( !all || !a || !all.length ) {
|
||
return {};
|
||
}
|
||
|
||
// First batch of tests
|
||
select = document.createElement("select");
|
||
opt = select.appendChild( document.createElement("option") );
|
||
input = div.getElementsByTagName("input")[ 0 ];
|
||
|
||
a.style.cssText = "top:1px;float:left;opacity:.5";
|
||
support = {
|
||
// IE strips leading whitespace when .innerHTML is used
|
||
leadingWhitespace: ( div.firstChild.nodeType === 3 ),
|
||
|
||
// Make sure that tbody elements aren't automatically inserted
|
||
// IE will insert them into empty tables
|
||
tbody: !div.getElementsByTagName("tbody").length,
|
||
|
||
// Make sure that link elements get serialized correctly by innerHTML
|
||
// This requires a wrapper element in IE
|
||
htmlSerialize: !!div.getElementsByTagName("link").length,
|
||
|
||
// Get the style information from getAttribute
|
||
// (IE uses .cssText instead)
|
||
style: /top/.test( a.getAttribute("style") ),
|
||
|
||
// Make sure that URLs aren't manipulated
|
||
// (IE normalizes it by default)
|
||
hrefNormalized: ( a.getAttribute("href") === "/a" ),
|
||
|
||
// Make sure that element opacity exists
|
||
// (IE uses filter instead)
|
||
// Use a regex to work around a WebKit issue. See #5145
|
||
opacity: /^0.5/.test( a.style.opacity ),
|
||
|
||
// Verify style float existence
|
||
// (IE uses styleFloat instead of cssFloat)
|
||
cssFloat: !!a.style.cssFloat,
|
||
|
||
// Make sure that if no value is specified for a checkbox
|
||
// that it defaults to "on".
|
||
// (WebKit defaults to "" instead)
|
||
checkOn: ( input.value === "on" ),
|
||
|
||
// Make sure that a selected-by-default option has a working selected property.
|
||
// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
|
||
optSelected: opt.selected,
|
||
|
||
// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)
|
||
getSetAttribute: div.className !== "t",
|
||
|
||
// Tests for enctype support on a form (#6743)
|
||
enctype: !!document.createElement("form").enctype,
|
||
|
||
// Makes sure cloning an html5 element does not cause problems
|
||
// Where outerHTML is undefined, this still works
|
||
html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>",
|
||
|
||
// jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode
|
||
boxModel: ( document.compatMode === "CSS1Compat" ),
|
||
|
||
// Will be defined later
|
||
submitBubbles: true,
|
||
changeBubbles: true,
|
||
focusinBubbles: false,
|
||
deleteExpando: true,
|
||
noCloneEvent: true,
|
||
inlineBlockNeedsLayout: false,
|
||
shrinkWrapBlocks: false,
|
||
reliableMarginRight: true,
|
||
boxSizingReliable: true,
|
||
pixelPosition: false
|
||
};
|
||
|
||
// Make sure checked status is properly cloned
|
||
input.checked = true;
|
||
support.noCloneChecked = input.cloneNode( true ).checked;
|
||
|
||
// Make sure that the options inside disabled selects aren't marked as disabled
|
||
// (WebKit marks them as disabled)
|
||
select.disabled = true;
|
||
support.optDisabled = !opt.disabled;
|
||
|
||
// Test to see if it's possible to delete an expando from an element
|
||
// Fails in Internet Explorer
|
||
try {
|
||
delete div.test;
|
||
} catch( e ) {
|
||
support.deleteExpando = false;
|
||
}
|
||
|
||
if ( !div.addEventListener && div.attachEvent && div.fireEvent ) {
|
||
div.attachEvent( "onclick", clickFn = function() {
|
||
// Cloning a node shouldn't copy over any
|
||
// bound event handlers (IE does this)
|
||
support.noCloneEvent = false;
|
||
});
|
||
div.cloneNode( true ).fireEvent("onclick");
|
||
div.detachEvent( "onclick", clickFn );
|
||
}
|
||
|
||
// Check if a radio maintains its value
|
||
// after being appended to the DOM
|
||
input = document.createElement("input");
|
||
input.value = "t";
|
||
input.setAttribute( "type", "radio" );
|
||
support.radioValue = input.value === "t";
|
||
|
||
input.setAttribute( "checked", "checked" );
|
||
|
||
// #11217 - WebKit loses check when the name is after the checked attribute
|
||
input.setAttribute( "name", "t" );
|
||
|
||
div.appendChild( input );
|
||
fragment = document.createDocumentFragment();
|
||
fragment.appendChild( div.lastChild );
|
||
|
||
// WebKit doesn't clone checked state correctly in fragments
|
||
support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;
|
||
|
||
// Check if a disconnected checkbox will retain its checked
|
||
// value of true after appended to the DOM (IE6/7)
|
||
support.appendChecked = input.checked;
|
||
|
||
fragment.removeChild( input );
|
||
fragment.appendChild( div );
|
||
|
||
// Technique from Juriy Zaytsev
|
||
// http://perfectionkills.com/detecting-event-support-without-browser-sniffing/
|
||
// We only care about the case where non-standard event systems
|
||
// are used, namely in IE. Short-circuiting here helps us to
|
||
// avoid an eval call (in setAttribute) which can cause CSP
|
||
// to go haywire. See: https://developer.mozilla.org/en/Security/CSP
|
||
if ( div.attachEvent ) {
|
||
for ( i in {
|
||
submit: true,
|
||
change: true,
|
||
focusin: true
|
||
}) {
|
||
eventName = "on" + i;
|
||
isSupported = ( eventName in div );
|
||
if ( !isSupported ) {
|
||
div.setAttribute( eventName, "return;" );
|
||
isSupported = ( typeof div[ eventName ] === "function" );
|
||
}
|
||
support[ i + "Bubbles" ] = isSupported;
|
||
}
|
||
}
|
||
|
||
// Run tests that need a body at doc ready
|
||
jQuery(function() {
|
||
var container, div, tds, marginDiv,
|
||
divReset = "padding:0;margin:0;border:0;display:block;overflow:hidden;",
|
||
body = document.getElementsByTagName("body")[0];
|
||
|
||
if ( !body ) {
|
||
// Return for frameset docs that don't have a body
|
||
return;
|
||
}
|
||
|
||
container = document.createElement("div");
|
||
container.style.cssText = "visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px";
|
||
body.insertBefore( container, body.firstChild );
|
||
|
||
// Construct the test element
|
||
div = document.createElement("div");
|
||
container.appendChild( div );
|
||
|
||
// Check if table cells still have offsetWidth/Height when they are set
|
||
// to display:none and there are still other visible table cells in a
|
||
// table row; if so, offsetWidth/Height are not reliable for use when
|
||
// determining if an element has been hidden directly using
|
||
// display:none (it is still safe to use offsets if a parent element is
|
||
// hidden; don safety goggles and see bug #4512 for more information).
|
||
// (only IE 8 fails this test)
|
||
div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>";
|
||
tds = div.getElementsByTagName("td");
|
||
tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none";
|
||
isSupported = ( tds[ 0 ].offsetHeight === 0 );
|
||
|
||
tds[ 0 ].style.display = "";
|
||
tds[ 1 ].style.display = "none";
|
||
|
||
// Check if empty table cells still have offsetWidth/Height
|
||
// (IE <= 8 fail this test)
|
||
support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 );
|
||
|
||
// Check box-sizing and margin behavior
|
||
div.innerHTML = "";
|
||
div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;";
|
||
support.boxSizing = ( div.offsetWidth === 4 );
|
||
support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 );
|
||
|
||
// NOTE: To any future maintainer, we've window.getComputedStyle
|
||
// because jsdom on node.js will break without it.
|
||
if ( window.getComputedStyle ) {
|
||
support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";
|
||
support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px";
|
||
|
||
// Check if div with explicit width and no margin-right incorrectly
|
||
// gets computed margin-right based on width of container. For more
|
||
// info see bug #3333
|
||
// Fails in WebKit before Feb 2011 nightlies
|
||
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
|
||
marginDiv = document.createElement("div");
|
||
marginDiv.style.cssText = div.style.cssText = divReset;
|
||
marginDiv.style.marginRight = marginDiv.style.width = "0";
|
||
div.style.width = "1px";
|
||
div.appendChild( marginDiv );
|
||
support.reliableMarginRight =
|
||
!parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight );
|
||
}
|
||
|
||
if ( typeof div.style.zoom !== "undefined" ) {
|
||
// Check if natively block-level elements act like inline-block
|
||
// elements when setting their display to 'inline' and giving
|
||
// them layout
|
||
// (IE < 8 does this)
|
||
div.innerHTML = "";
|
||
div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1";
|
||
support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 );
|
||
|
||
// Check if elements with layout shrink-wrap their children
|
||
// (IE 6 does this)
|
||
div.style.display = "block";
|
||
div.style.overflow = "visible";
|
||
div.innerHTML = "<div></div>";
|
||
div.firstChild.style.width = "5px";
|
||
support.shrinkWrapBlocks = ( div.offsetWidth !== 3 );
|
||
|
||
container.style.zoom = 1;
|
||
}
|
||
|
||
// Null elements to avoid leaks in IE
|
||
body.removeChild( container );
|
||
container = div = tds = marginDiv = null;
|
||
});
|
||
|
||
// Null elements to avoid leaks in IE
|
||
fragment.removeChild( div );
|
||
all = a = select = opt = input = fragment = div = null;
|
||
|
||
return support;
|
||
})();
|
||
var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/,
|
||
rmultiDash = /([A-Z])/g;
|
||
|
||
jQuery.extend({
|
||
cache: {},
|
||
|
||
deletedIds: [],
|
||
|
||
// Remove at next major release (1.9/2.0)
|
||
uuid: 0,
|
||
|
||
// Unique for each copy of jQuery on the page
|
||
// Non-digits removed to match rinlinejQuery
|
||
expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ),
|
||
|
||
// The following elements throw uncatchable exceptions if you
|
||
// attempt to add expando properties to them.
|
||
noData: {
|
||
"embed": true,
|
||
// Ban all objects except for Flash (which handle expandos)
|
||
"object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
|
||
"applet": true
|
||
},
|
||
|
||
hasData: function( elem ) {
|
||
elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];
|
||
return !!elem && !isEmptyDataObject( elem );
|
||
},
|
||
|
||
data: function( elem, name, data, pvt /* Internal Use Only */ ) {
|
||
if ( !jQuery.acceptData( elem ) ) {
|
||
return;
|
||
}
|
||
|
||
var thisCache, ret,
|
||
internalKey = jQuery.expando,
|
||
getByName = typeof name === "string",
|
||
|
||
// We have to handle DOM nodes and JS objects differently because IE6-7
|
||
// can't GC object references properly across the DOM-JS boundary
|
||
isNode = elem.nodeType,
|
||
|
||
// Only DOM nodes need the global jQuery cache; JS object data is
|
||
// attached directly to the object so GC can occur automatically
|
||
cache = isNode ? jQuery.cache : elem,
|
||
|
||
// Only defining an ID for JS objects if its cache already exists allows
|
||
// the code to shortcut on the same path as a DOM node with no cache
|
||
id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;
|
||
|
||
// Avoid doing any more work than we need to when trying to get data on an
|
||
// object that has no data at all
|
||
if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) {
|
||
return;
|
||
}
|
||
|
||
if ( !id ) {
|
||
// Only DOM nodes need a new unique ID for each element since their data
|
||
// ends up in the global cache
|
||
if ( isNode ) {
|
||
elem[ internalKey ] = id = jQuery.deletedIds.pop() || jQuery.guid++;
|
||
} else {
|
||
id = internalKey;
|
||
}
|
||
}
|
||
|
||
if ( !cache[ id ] ) {
|
||
cache[ id ] = {};
|
||
|
||
// Avoids exposing jQuery metadata on plain JS objects when the object
|
||
// is serialized using JSON.stringify
|
||
if ( !isNode ) {
|
||
cache[ id ].toJSON = jQuery.noop;
|
||
}
|
||
}
|
||
|
||
// An object can be passed to jQuery.data instead of a key/value pair; this gets
|
||
// shallow copied over onto the existing cache
|
||
if ( typeof name === "object" || typeof name === "function" ) {
|
||
if ( pvt ) {
|
||
cache[ id ] = jQuery.extend( cache[ id ], name );
|
||
} else {
|
||
cache[ id ].data = jQuery.extend( cache[ id ].data, name );
|
||
}
|
||
}
|
||
|
||
thisCache = cache[ id ];
|
||
|
||
// jQuery data() is stored in a separate object inside the object's internal data
|
||
// cache in order to avoid key collisions between internal data and user-defined
|
||
// data.
|
||
if ( !pvt ) {
|
||
if ( !thisCache.data ) {
|
||
thisCache.data = {};
|
||
}
|
||
|
||
thisCache = thisCache.data;
|
||
}
|
||
|
||
if ( data !== undefined ) {
|
||
thisCache[ jQuery.camelCase( name ) ] = data;
|
||
}
|
||
|
||
// Check for both converted-to-camel and non-converted data property names
|
||
// If a data property was specified
|
||
if ( getByName ) {
|
||
|
||
// First Try to find as-is property data
|
||
ret = thisCache[ name ];
|
||
|
||
// Test for null|undefined property data
|
||
if ( ret == null ) {
|
||
|
||
// Try to find the camelCased property
|
||
ret = thisCache[ jQuery.camelCase( name ) ];
|
||
}
|
||
} else {
|
||
ret = thisCache;
|
||
}
|
||
|
||
return ret;
|
||
},
|
||
|
||
removeData: function( elem, name, pvt /* Internal Use Only */ ) {
|
||
if ( !jQuery.acceptData( elem ) ) {
|
||
return;
|
||
}
|
||
|
||
var thisCache, i, l,
|
||
|
||
isNode = elem.nodeType,
|
||
|
||
// See jQuery.data for more information
|
||
cache = isNode ? jQuery.cache : elem,
|
||
id = isNode ? elem[ jQuery.expando ] : jQuery.expando;
|
||
|
||
// If there is already no cache entry for this object, there is no
|
||
// purpose in continuing
|
||
if ( !cache[ id ] ) {
|
||
return;
|
||
}
|
||
|
||
if ( name ) {
|
||
|
||
thisCache = pvt ? cache[ id ] : cache[ id ].data;
|
||
|
||
if ( thisCache ) {
|
||
|
||
// Support array or space separated string names for data keys
|
||
if ( !jQuery.isArray( name ) ) {
|
||
|
||
// try the string as a key before any manipulation
|
||
if ( name in thisCache ) {
|
||
name = [ name ];
|
||
} else {
|
||
|
||
// split the camel cased version by spaces unless a key with the spaces exists
|
||
name = jQuery.camelCase( name );
|
||
if ( name in thisCache ) {
|
||
name = [ name ];
|
||
} else {
|
||
name = name.split(" ");
|
||
}
|
||
}
|
||
}
|
||
|
||
for ( i = 0, l = name.length; i < l; i++ ) {
|
||
delete thisCache[ name[i] ];
|
||
}
|
||
|
||
// If there is no data left in the cache, we want to continue
|
||
// and let the cache object itself get destroyed
|
||
if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) {
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
|
||
// See jQuery.data for more information
|
||
if ( !pvt ) {
|
||
delete cache[ id ].data;
|
||
|
||
// Don't destroy the parent cache unless the internal data object
|
||
// had been the only thing left in it
|
||
if ( !isEmptyDataObject( cache[ id ] ) ) {
|
||
return;
|
||
}
|
||
}
|
||
|
||
// Destroy the cache
|
||
if ( isNode ) {
|
||
jQuery.cleanData( [ elem ], true );
|
||
|
||
// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)
|
||
} else if ( jQuery.support.deleteExpando || cache != cache.window ) {
|
||
delete cache[ id ];
|
||
|
||
// When all else fails, null
|
||
} else {
|
||
cache[ id ] = null;
|
||
}
|
||
},
|
||
|
||
// For internal use only.
|
||
_data: function( elem, name, data ) {
|
||
return jQuery.data( elem, name, data, true );
|
||
},
|
||
|
||
// A method for determining if a DOM node can handle the data expando
|
||
acceptData: function( elem ) {
|
||
var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ];
|
||
|
||
// nodes accept data unless otherwise specified; rejection can be conditional
|
||
return !noData || noData !== true && elem.getAttribute("classid") === noData;
|
||
}
|
||
});
|
||
|
||
jQuery.fn.extend({
|
||
data: function( key, value ) {
|
||
var parts, part, attr, name, l,
|
||
elem = this[0],
|
||
i = 0,
|
||
data = null;
|
||
|
||
// Gets all values
|
||
if ( key === undefined ) {
|
||
if ( this.length ) {
|
||
data = jQuery.data( elem );
|
||
|
||
if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) {
|
||
attr = elem.attributes;
|
||
for ( l = attr.length; i < l; i++ ) {
|
||
name = attr[i].name;
|
||
|
||
if ( !name.indexOf( "data-" ) ) {
|
||
name = jQuery.camelCase( name.substring(5) );
|
||
|
||
dataAttr( elem, name, data[ name ] );
|
||
}
|
||
}
|
||
jQuery._data( elem, "parsedAttrs", true );
|
||
}
|
||
}
|
||
|
||
return data;
|
||
}
|
||
|
||
// Sets multiple values
|
||
if ( typeof key === "object" ) {
|
||
return this.each(function() {
|
||
jQuery.data( this, key );
|
||
});
|
||
}
|
||
|
||
parts = key.split( ".", 2 );
|
||
parts[1] = parts[1] ? "." + parts[1] : "";
|
||
part = parts[1] + "!";
|
||
|
||
return jQuery.access( this, function( value ) {
|
||
|
||
if ( value === undefined ) {
|
||
data = this.triggerHandler( "getData" + part, [ parts[0] ] );
|
||
|
||
// Try to fetch any internally stored data first
|
||
if ( data === undefined && elem ) {
|
||
data = jQuery.data( elem, key );
|
||
data = dataAttr( elem, key, data );
|
||
}
|
||
|
||
return data === undefined && parts[1] ?
|
||
this.data( parts[0] ) :
|
||
data;
|
||
}
|
||
|
||
parts[1] = value;
|
||
this.each(function() {
|
||
var self = jQuery( this );
|
||
|
||
self.triggerHandler( "setData" + part, parts );
|
||
jQuery.data( this, key, value );
|
||
self.triggerHandler( "changeData" + part, parts );
|
||
});
|
||
}, null, value, arguments.length > 1, null, false );
|
||
},
|
||
|
||
removeData: function( key ) {
|
||
return this.each(function() {
|
||
jQuery.removeData( this, key );
|
||
});
|
||
}
|
||
});
|
||
|
||
function dataAttr( elem, key, data ) {
|
||
// If nothing was found internally, try to fetch any
|
||
// data from the HTML5 data-* attribute
|
||
if ( data === undefined && elem.nodeType === 1 ) {
|
||
|
||
var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
|
||
|
||
data = elem.getAttribute( name );
|
||
|
||
if ( typeof data === "string" ) {
|
||
try {
|
||
data = data === "true" ? true :
|
||
data === "false" ? false :
|
||
data === "null" ? null :
|
||
// Only convert to a number if it doesn't change the string
|
||
+data + "" === data ? +data :
|
||
rbrace.test( data ) ? jQuery.parseJSON( data ) :
|
||
data;
|
||
} catch( e ) {}
|
||
|
||
// Make sure we set the data so it isn't changed later
|
||
jQuery.data( elem, key, data );
|
||
|
||
} else {
|
||
data = undefined;
|
||
}
|
||
}
|
||
|
||
return data;
|
||
}
|
||
|
||
// checks a cache object for emptiness
|
||
function isEmptyDataObject( obj ) {
|
||
var name;
|
||
for ( name in obj ) {
|
||
|
||
// if the public data object is empty, the private is still empty
|
||
if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) {
|
||
continue;
|
||
}
|
||
if ( name !== "toJSON" ) {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
return true;
|
||
}
|
||
jQuery.extend({
|
||
queue: function( elem, type, data ) {
|
||
var queue;
|
||
|
||
if ( elem ) {
|
||
type = ( type || "fx" ) + "queue";
|
||
queue = jQuery._data( elem, type );
|
||
|
||
// Speed up dequeue by getting out quickly if this is just a lookup
|
||
if ( data ) {
|
||
if ( !queue || jQuery.isArray(data) ) {
|
||
queue = jQuery._data( elem, type, jQuery.makeArray(data) );
|
||
} else {
|
||
queue.push( data );
|
||
}
|
||
}
|
||
return queue || [];
|
||
}
|
||
},
|
||
|
||
dequeue: function( elem, type ) {
|
||
type = type || "fx";
|
||
|
||
var queue = jQuery.queue( elem, type ),
|
||
startLength = queue.length,
|
||
fn = queue.shift(),
|
||
hooks = jQuery._queueHooks( elem, type ),
|
||
next = function() {
|
||
jQuery.dequeue( elem, type );
|
||
};
|
||
|
||
// If the fx queue is dequeued, always remove the progress sentinel
|
||
if ( fn === "inprogress" ) {
|
||
fn = queue.shift();
|
||
startLength--;
|
||
}
|
||
|
||
if ( fn ) {
|
||
|
||
// Add a progress sentinel to prevent the fx queue from being
|
||
// automatically dequeued
|
||
if ( type === "fx" ) {
|
||
queue.unshift( "inprogress" );
|
||
}
|
||
|
||
// clear up the last queue stop function
|
||
delete hooks.stop;
|
||
fn.call( elem, next, hooks );
|
||
}
|
||
|
||
if ( !startLength && hooks ) {
|
||
hooks.empty.fire();
|
||
}
|
||
},
|
||
|
||
// not intended for public consumption - generates a queueHooks object, or returns the current one
|
||
_queueHooks: function( elem, type ) {
|
||
var key = type + "queueHooks";
|
||
return jQuery._data( elem, key ) || jQuery._data( elem, key, {
|
||
empty: jQuery.Callbacks("once memory").add(function() {
|
||
jQuery.removeData( elem, type + "queue", true );
|
||
jQuery.removeData( elem, key, true );
|
||
})
|
||
});
|
||
}
|
||
});
|
||
|
||
jQuery.fn.extend({
|
||
queue: function( type, data ) {
|
||
var setter = 2;
|
||
|
||
if ( typeof type !== "string" ) {
|
||
data = type;
|
||
type = "fx";
|
||
setter--;
|
||
}
|
||
|
||
if ( arguments.length < setter ) {
|
||
return jQuery.queue( this[0], type );
|
||
}
|
||
|
||
return data === undefined ?
|
||
this :
|
||
this.each(function() {
|
||
var queue = jQuery.queue( this, type, data );
|
||
|
||
// ensure a hooks for this queue
|
||
jQuery._queueHooks( this, type );
|
||
|
||
if ( type === "fx" && queue[0] !== "inprogress" ) {
|
||
jQuery.dequeue( this, type );
|
||
}
|
||
});
|
||
},
|
||
dequeue: function( type ) {
|
||
return this.each(function() {
|
||
jQuery.dequeue( this, type );
|
||
});
|
||
},
|
||
// Based off of the plugin by Clint Helfers, with permission.
|
||
// http://blindsignals.com/index.php/2009/07/jquery-delay/
|
||
delay: function( time, type ) {
|
||
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
|
||
type = type || "fx";
|
||
|
||
return this.queue( type, function( next, hooks ) {
|
||
var timeout = setTimeout( next, time );
|
||
hooks.stop = function() {
|
||
clearTimeout( timeout );
|
||
};
|
||
});
|
||
},
|
||
clearQueue: function( type ) {
|
||
return this.queue( type || "fx", [] );
|
||
},
|
||
// Get a promise resolved when queues of a certain type
|
||
// are emptied (fx is the type by default)
|
||
promise: function( type, obj ) {
|
||
var tmp,
|
||
count = 1,
|
||
defer = jQuery.Deferred(),
|
||
elements = this,
|
||
i = this.length,
|
||
resolve = function() {
|
||
if ( !( --count ) ) {
|
||
defer.resolveWith( elements, [ elements ] );
|
||
}
|
||
};
|
||
|
||
if ( typeof type !== "string" ) {
|
||
obj = type;
|
||
type = undefined;
|
||
}
|
||
type = type || "fx";
|
||
|
||
while( i-- ) {
|
||
tmp = jQuery._data( elements[ i ], type + "queueHooks" );
|
||
if ( tmp && tmp.empty ) {
|
||
count++;
|
||
tmp.empty.add( resolve );
|
||
}
|
||
}
|
||
resolve();
|
||
return defer.promise( obj );
|
||
}
|
||
});
|
||
var nodeHook, boolHook, fixSpecified,
|
||
rclass = /[\t\r\n]/g,
|
||
rreturn = /\r/g,
|
||
rtype = /^(?:button|input)$/i,
|
||
rfocusable = /^(?:button|input|object|select|textarea)$/i,
|
||
rclickable = /^a(?:rea|)$/i,
|
||
rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
|
||
getSetAttribute = jQuery.support.getSetAttribute;
|
||
|
||
jQuery.fn.extend({
|
||
attr: function( name, value ) {
|
||
return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 );
|
||
},
|
||
|
||
removeAttr: function( name ) {
|
||
return this.each(function() {
|
||
jQuery.removeAttr( this, name );
|
||
});
|
||
},
|
||
|
||
prop: function( name, value ) {
|
||
return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 );
|
||
},
|
||
|
||
removeProp: function( name ) {
|
||
name = jQuery.propFix[ name ] || name;
|
||
return this.each(function() {
|
||
// try/catch handles cases where IE balks (such as removing a property on window)
|
||
try {
|
||
this[ name ] = undefined;
|
||
delete this[ name ];
|
||
} catch( e ) {}
|
||
});
|
||
},
|
||
|
||
addClass: function( value ) {
|
||
var classNames, i, l, elem,
|
||
setClass, c, cl;
|
||
|
||
if ( jQuery.isFunction( value ) ) {
|
||
return this.each(function( j ) {
|
||
jQuery( this ).addClass( value.call(this, j, this.className) );
|
||
});
|
||
}
|
||
|
||
if ( value && typeof value === "string" ) {
|
||
classNames = value.split( core_rspace );
|
||
|
||
for ( i = 0, l = this.length; i < l; i++ ) {
|
||
elem = this[ i ];
|
||
|
||
if ( elem.nodeType === 1 ) {
|
||
if ( !elem.className && classNames.length === 1 ) {
|
||
elem.className = value;
|
||
|
||
} else {
|
||
setClass = " " + elem.className + " ";
|
||
|
||
for ( c = 0, cl = classNames.length; c < cl; c++ ) {
|
||
if ( setClass.indexOf( " " + classNames[ c ] + " " ) < 0 ) {
|
||
setClass += classNames[ c ] + " ";
|
||
}
|
||
}
|
||
elem.className = jQuery.trim( setClass );
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return this;
|
||
},
|
||
|
||
removeClass: function( value ) {
|
||
var removes, className, elem, c, cl, i, l;
|
||
|
||
if ( jQuery.isFunction( value ) ) {
|
||
return this.each(function( j ) {
|
||
jQuery( this ).removeClass( value.call(this, j, this.className) );
|
||
});
|
||
}
|
||
if ( (value && typeof value === "string") || value === undefined ) {
|
||
removes = ( value || "" ).split( core_rspace );
|
||
|
||
for ( i = 0, l = this.length; i < l; i++ ) {
|
||
elem = this[ i ];
|
||
if ( elem.nodeType === 1 && elem.className ) {
|
||
|
||
className = (" " + elem.className + " ").replace( rclass, " " );
|
||
|
||
// loop over each item in the removal list
|
||
for ( c = 0, cl = removes.length; c < cl; c++ ) {
|
||
// Remove until there is nothing to remove,
|
||
while ( className.indexOf(" " + removes[ c ] + " ") >= 0 ) {
|
||
className = className.replace( " " + removes[ c ] + " " , " " );
|
||
}
|
||
}
|
||
elem.className = value ? jQuery.trim( className ) : "";
|
||
}
|
||
}
|
||
}
|
||
|
||
return this;
|
||
},
|
||
|
||
toggleClass: function( value, stateVal ) {
|
||
var type = typeof value,
|
||
isBool = typeof stateVal === "boolean";
|
||
|
||
if ( jQuery.isFunction( value ) ) {
|
||
return this.each(function( i ) {
|
||
jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
|
||
});
|
||
}
|
||
|
||
return this.each(function() {
|
||
if ( type === "string" ) {
|
||
// toggle individual class names
|
||
var className,
|
||
i = 0,
|
||
self = jQuery( this ),
|
||
state = stateVal,
|
||
classNames = value.split( core_rspace );
|
||
|
||
while ( (className = classNames[ i++ ]) ) {
|
||
// check each className given, space separated list
|
||
state = isBool ? state : !self.hasClass( className );
|
||
self[ state ? "addClass" : "removeClass" ]( className );
|
||
}
|
||
|
||
} else if ( type === "undefined" || type === "boolean" ) {
|
||
if ( this.className ) {
|
||
// store className if set
|
||
jQuery._data( this, "__className__", this.className );
|
||
}
|
||
|
||
// toggle whole className
|
||
this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || "";
|
||
}
|
||
});
|
||
},
|
||
|
||
hasClass: function( selector ) {
|
||
var className = " " + selector + " ",
|
||
i = 0,
|
||
l = this.length;
|
||
for ( ; i < l; i++ ) {
|
||
if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
|
||
return true;
|
||
}
|
||
}
|
||
|
||
return false;
|
||
},
|
||
|
||
val: function( value ) {
|
||
var hooks, ret, isFunction,
|
||
elem = this[0];
|
||
|
||
if ( !arguments.length ) {
|
||
if ( elem ) {
|
||
hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
|
||
|
||
if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
|
||
return ret;
|
||
}
|
||
|
||
ret = elem.value;
|
||
|
||
return typeof ret === "string" ?
|
||
// handle most common string cases
|
||
ret.replace(rreturn, "") :
|
||
// handle cases where value is null/undef or number
|
||
ret == null ? "" : ret;
|
||
}
|
||
|
||
return;
|
||
}
|
||
|
||
isFunction = jQuery.isFunction( value );
|
||
|
||
return this.each(function( i ) {
|
||
var val,
|
||
self = jQuery(this);
|
||
|
||
if ( this.nodeType !== 1 ) {
|
||
return;
|
||
}
|
||
|
||
if ( isFunction ) {
|
||
val = value.call( this, i, self.val() );
|
||
} else {
|
||
val = value;
|
||
}
|
||
|
||
// Treat null/undefined as ""; convert numbers to string
|
||
if ( val == null ) {
|
||
val = "";
|
||
} else if ( typeof val === "number" ) {
|
||
val += "";
|
||
} else if ( jQuery.isArray( val ) ) {
|
||
val = jQuery.map(val, function ( value ) {
|
||
return value == null ? "" : value + "";
|
||
});
|
||
}
|
||
|
||
hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
|
||
|
||
// If set returns undefined, fall back to normal setting
|
||
if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
|
||
this.value = val;
|
||
}
|
||
});
|
||
}
|
||
});
|
||
|
||
jQuery.extend({
|
||
valHooks: {
|
||
option: {
|
||
get: function( elem ) {
|
||
// attributes.value is undefined in Blackberry 4.7 but
|
||
// uses .value. See #6932
|
||
var val = elem.attributes.value;
|
||
return !val || val.specified ? elem.value : elem.text;
|
||
}
|
||
},
|
||
select: {
|
||
get: function( elem ) {
|
||
var value, option,
|
||
options = elem.options,
|
||
index = elem.selectedIndex,
|
||
one = elem.type === "select-one" || index < 0,
|
||
values = one ? null : [],
|
||
max = one ? index + 1 : options.length,
|
||
i = index < 0 ?
|
||
max :
|
||
one ? index : 0;
|
||
|
||
// Loop through all the selected options
|
||
for ( ; i < max; i++ ) {
|
||
option = options[ i ];
|
||
|
||
// oldIE doesn't update selected after form reset (#2551)
|
||
if ( ( option.selected || i === index ) &&
|
||
// Don't return options that are disabled or in a disabled optgroup
|
||
( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&
|
||
( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
|
||
|
||
// Get the specific value for the option
|
||
value = jQuery( option ).val();
|
||
|
||
// We don't need an array for one selects
|
||
if ( one ) {
|
||
return value;
|
||
}
|
||
|
||
// Multi-Selects return an array
|
||
values.push( value );
|
||
}
|
||
}
|
||
|
||
return values;
|
||
},
|
||
|
||
set: function( elem, value ) {
|
||
var values = jQuery.makeArray( value );
|
||
|
||
jQuery(elem).find("option").each(function() {
|
||
this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;
|
||
});
|
||
|
||
if ( !values.length ) {
|
||
elem.selectedIndex = -1;
|
||
}
|
||
return values;
|
||
}
|
||
}
|
||
},
|
||
|
||
// Unused in 1.8, left in so attrFn-stabbers won't die; remove in 1.9
|
||
attrFn: {},
|
||
|
||
attr: function( elem, name, value, pass ) {
|
||
var ret, hooks, notxml,
|
||
nType = elem.nodeType;
|
||
|
||
// don't get/set attributes on text, comment and attribute nodes
|
||
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
|
||
return;
|
||
}
|
||
|
||
if ( pass && jQuery.isFunction( jQuery.fn[ name ] ) ) {
|
||
return jQuery( elem )[ name ]( value );
|
||
}
|
||
|
||
// Fallback to prop when attributes are not supported
|
||
if ( typeof elem.getAttribute === "undefined" ) {
|
||
return jQuery.prop( elem, name, value );
|
||
}
|
||
|
||
notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
|
||
|
||
// All attributes are lowercase
|
||
// Grab necessary hook if one is defined
|
||
if ( notxml ) {
|
||
name = name.toLowerCase();
|
||
hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook );
|
||
}
|
||
|
||
if ( value !== undefined ) {
|
||
|
||
if ( value === null ) {
|
||
jQuery.removeAttr( elem, name );
|
||
return;
|
||
|
||
} else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) {
|
||
return ret;
|
||
|
||
} else {
|
||
elem.setAttribute( name, value + "" );
|
||
return value;
|
||
}
|
||
|
||
} else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) {
|
||
return ret;
|
||
|
||
} else {
|
||
|
||
ret = elem.getAttribute( name );
|
||
|
||
// Non-existent attributes return null, we normalize to undefined
|
||
return ret === null ?
|
||
undefined :
|
||
ret;
|
||
}
|
||
},
|
||
|
||
removeAttr: function( elem, value ) {
|
||
var propName, attrNames, name, isBool,
|
||
i = 0;
|
||
|
||
if ( value && elem.nodeType === 1 ) {
|
||
|
||
attrNames = value.split( core_rspace );
|
||
|
||
for ( ; i < attrNames.length; i++ ) {
|
||
name = attrNames[ i ];
|
||
|
||
if ( name ) {
|
||
propName = jQuery.propFix[ name ] || name;
|
||
isBool = rboolean.test( name );
|
||
|
||
// See #9699 for explanation of this approach (setting first, then removal)
|
||
// Do not do this for boolean attributes (see #10870)
|
||
if ( !isBool ) {
|
||
jQuery.attr( elem, name, "" );
|
||
}
|
||
elem.removeAttribute( getSetAttribute ? name : propName );
|
||
|
||
// Set corresponding property to false for boolean attributes
|
||
if ( isBool && propName in elem ) {
|
||
elem[ propName ] = false;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
|
||
attrHooks: {
|
||
type: {
|
||
set: function( elem, value ) {
|
||
// We can't allow the type property to be changed (since it causes problems in IE)
|
||
if ( rtype.test( elem.nodeName ) && elem.parentNode ) {
|
||
jQuery.error( "type property can't be changed" );
|
||
} else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
|
||
// Setting the type on a radio button after the value resets the value in IE6-9
|
||
// Reset value to it's default in case type is set after value
|
||
// This is for element creation
|
||
var val = elem.value;
|
||
elem.setAttribute( "type", value );
|
||
if ( val ) {
|
||
elem.value = val;
|
||
}
|
||
return value;
|
||
}
|
||
}
|
||
},
|
||
// Use the value property for back compat
|
||
// Use the nodeHook for button elements in IE6/7 (#1954)
|
||
value: {
|
||
get: function( elem, name ) {
|
||
if ( nodeHook && jQuery.nodeName( elem, "button" ) ) {
|
||
return nodeHook.get( elem, name );
|
||
}
|
||
return name in elem ?
|
||
elem.value :
|
||
null;
|
||
},
|
||
set: function( elem, value, name ) {
|
||
if ( nodeHook && jQuery.nodeName( elem, "button" ) ) {
|
||
return nodeHook.set( elem, value, name );
|
||
}
|
||
// Does not return so that setAttribute is also used
|
||
elem.value = value;
|
||
}
|
||
}
|
||
},
|
||
|
||
propFix: {
|
||
tabindex: "tabIndex",
|
||
readonly: "readOnly",
|
||
"for": "htmlFor",
|
||
"class": "className",
|
||
maxlength: "maxLength",
|
||
cellspacing: "cellSpacing",
|
||
cellpadding: "cellPadding",
|
||
rowspan: "rowSpan",
|
||
colspan: "colSpan",
|
||
usemap: "useMap",
|
||
frameborder: "frameBorder",
|
||
contenteditable: "contentEditable"
|
||
},
|
||
|
||
prop: function( elem, name, value ) {
|
||
var ret, hooks, notxml,
|
||
nType = elem.nodeType;
|
||
|
||
// don't get/set properties on text, comment and attribute nodes
|
||
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
|
||
return;
|
||
}
|
||
|
||
notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
|
||
|
||
if ( notxml ) {
|
||
// Fix name and attach hooks
|
||
name = jQuery.propFix[ name ] || name;
|
||
hooks = jQuery.propHooks[ name ];
|
||
}
|
||
|
||
if ( value !== undefined ) {
|
||
if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
|
||
return ret;
|
||
|
||
} else {
|
||
return ( elem[ name ] = value );
|
||
}
|
||
|
||
} else {
|
||
if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
|
||
return ret;
|
||
|
||
} else {
|
||
return elem[ name ];
|
||
}
|
||
}
|
||
},
|
||
|
||
propHooks: {
|
||
tabIndex: {
|
||
get: function( elem ) {
|
||
// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
|
||
// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
|
||
var attributeNode = elem.getAttributeNode("tabindex");
|
||
|
||
return attributeNode && attributeNode.specified ?
|
||
parseInt( attributeNode.value, 10 ) :
|
||
rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
|
||
0 :
|
||
undefined;
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
// Hook for boolean attributes
|
||
boolHook = {
|
||
get: function( elem, name ) {
|
||
// Align boolean attributes with corresponding properties
|
||
// Fall back to attribute presence where some booleans are not supported
|
||
var attrNode,
|
||
property = jQuery.prop( elem, name );
|
||
return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?
|
||
name.toLowerCase() :
|
||
undefined;
|
||
},
|
||
set: function( elem, value, name ) {
|
||
var propName;
|
||
if ( value === false ) {
|
||
// Remove boolean attributes when set to false
|
||
jQuery.removeAttr( elem, name );
|
||
} else {
|
||
// value is true since we know at this point it's type boolean and not false
|
||
// Set boolean attributes to the same name and set the DOM property
|
||
propName = jQuery.propFix[ name ] || name;
|
||
if ( propName in elem ) {
|
||
// Only set the IDL specifically if it already exists on the element
|
||
elem[ propName ] = true;
|
||
}
|
||
|
||
elem.setAttribute( name, name.toLowerCase() );
|
||
}
|
||
return name;
|
||
}
|
||
};
|
||
|
||
// IE6/7 do not support getting/setting some attributes with get/setAttribute
|
||
if ( !getSetAttribute ) {
|
||
|
||
fixSpecified = {
|
||
name: true,
|
||
id: true,
|
||
coords: true
|
||
};
|
||
|
||
// Use this for any attribute in IE6/7
|
||
// This fixes almost every IE6/7 issue
|
||
nodeHook = jQuery.valHooks.button = {
|
||
get: function( elem, name ) {
|
||
var ret;
|
||
ret = elem.getAttributeNode( name );
|
||
return ret && ( fixSpecified[ name ] ? ret.value !== "" : ret.specified ) ?
|
||
ret.value :
|
||
undefined;
|
||
},
|
||
set: function( elem, value, name ) {
|
||
// Set the existing or create a new attribute node
|
||
var ret = elem.getAttributeNode( name );
|
||
if ( !ret ) {
|
||
ret = document.createAttribute( name );
|
||
elem.setAttributeNode( ret );
|
||
}
|
||
return ( ret.value = value + "" );
|
||
}
|
||
};
|
||
|
||
// Set width and height to auto instead of 0 on empty string( Bug #8150 )
|
||
// This is for removals
|
||
jQuery.each([ "width", "height" ], function( i, name ) {
|
||
jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {
|
||
set: function( elem, value ) {
|
||
if ( value === "" ) {
|
||
elem.setAttribute( name, "auto" );
|
||
return value;
|
||
}
|
||
}
|
||
});
|
||
});
|
||
|
||
// Set contenteditable to false on removals(#10429)
|
||
// Setting to empty string throws an error as an invalid value
|
||
jQuery.attrHooks.contenteditable = {
|
||
get: nodeHook.get,
|
||
set: function( elem, value, name ) {
|
||
if ( value === "" ) {
|
||
value = "false";
|
||
}
|
||
nodeHook.set( elem, value, name );
|
||
}
|
||
};
|
||
}
|
||
|
||
|
||
// Some attributes require a special call on IE
|
||
if ( !jQuery.support.hrefNormalized ) {
|
||
jQuery.each([ "href", "src", "width", "height" ], function( i, name ) {
|
||
jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {
|
||
get: function( elem ) {
|
||
var ret = elem.getAttribute( name, 2 );
|
||
return ret === null ? undefined : ret;
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
if ( !jQuery.support.style ) {
|
||
jQuery.attrHooks.style = {
|
||
get: function( elem ) {
|
||
// Return undefined in the case of empty string
|
||
// Normalize to lowercase since IE uppercases css property names
|
||
return elem.style.cssText.toLowerCase() || undefined;
|
||
},
|
||
set: function( elem, value ) {
|
||
return ( elem.style.cssText = value + "" );
|
||
}
|
||
};
|
||
}
|
||
|
||
// Safari mis-reports the default selected property of an option
|
||
// Accessing the parent's selectedIndex property fixes it
|
||
if ( !jQuery.support.optSelected ) {
|
||
jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {
|
||
get: function( elem ) {
|
||
var parent = elem.parentNode;
|
||
|
||
if ( parent ) {
|
||
parent.selectedIndex;
|
||
|
||
// Make sure that it also works with optgroups, see #5701
|
||
if ( parent.parentNode ) {
|
||
parent.parentNode.selectedIndex;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
});
|
||
}
|
||
|
||
// IE6/7 call enctype encoding
|
||
if ( !jQuery.support.enctype ) {
|
||
jQuery.propFix.enctype = "encoding";
|
||
}
|
||
|
||
// Radios and checkboxes getter/setter
|
||
if ( !jQuery.support.checkOn ) {
|
||
jQuery.each([ "radio", "checkbox" ], function() {
|
||
jQuery.valHooks[ this ] = {
|
||
get: function( elem ) {
|
||
// Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified
|
||
return elem.getAttribute("value") === null ? "on" : elem.value;
|
||
}
|
||
};
|
||
});
|
||
}
|
||
jQuery.each([ "radio", "checkbox" ], function() {
|
||
jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], {
|
||
set: function( elem, value ) {
|
||
if ( jQuery.isArray( value ) ) {
|
||
return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
|
||
}
|
||
}
|
||
});
|
||
});
|
||
var rformElems = /^(?:textarea|input|select)$/i,
|
||
rtypenamespace = /^([^\.]*|)(?:\.(.+)|)$/,
|
||
rhoverHack = /(?:^|\s)hover(\.\S+|)\b/,
|
||
rkeyEvent = /^key/,
|
||
rmouseEvent = /^(?:mouse|contextmenu)|click/,
|
||
rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
|
||
hoverHack = function( events ) {
|
||
return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" );
|
||
};
|
||
|
||
/*
|
||
* Helper functions for managing events -- not part of the public interface.
|
||
* Props to Dean Edwards' addEvent library for many of the ideas.
|
||
*/
|
||
jQuery.event = {
|
||
|
||
add: function( elem, types, handler, data, selector ) {
|
||
|
||
var elemData, eventHandle, events,
|
||
t, tns, type, namespaces, handleObj,
|
||
handleObjIn, handlers, special;
|
||
|
||
// Don't attach events to noData or text/comment nodes (allow plain objects tho)
|
||
if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) {
|
||
return;
|
||
}
|
||
|
||
// Caller can pass in an object of custom data in lieu of the handler
|
||
if ( handler.handler ) {
|
||
handleObjIn = handler;
|
||
handler = handleObjIn.handler;
|
||
selector = handleObjIn.selector;
|
||
}
|
||
|
||
// Make sure that the handler has a unique ID, used to find/remove it later
|
||
if ( !handler.guid ) {
|
||
handler.guid = jQuery.guid++;
|
||
}
|
||
|
||
// Init the element's event structure and main handler, if this is the first
|
||
events = elemData.events;
|
||
if ( !events ) {
|
||
elemData.events = events = {};
|
||
}
|
||
eventHandle = elemData.handle;
|
||
if ( !eventHandle ) {
|
||
elemData.handle = eventHandle = function( e ) {
|
||
// Discard the second event of a jQuery.event.trigger() and
|
||
// when an event is called after a page has unloaded
|
||
return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ?
|
||
jQuery.event.dispatch.apply( eventHandle.elem, arguments ) :
|
||
undefined;
|
||
};
|
||
// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events
|
||
eventHandle.elem = elem;
|
||
}
|
||
|
||
// Handle multiple events separated by a space
|
||
// jQuery(...).bind("mouseover mouseout", fn);
|
||
types = jQuery.trim( hoverHack(types) ).split( " " );
|
||
for ( t = 0; t < types.length; t++ ) {
|
||
|
||
tns = rtypenamespace.exec( types[t] ) || [];
|
||
type = tns[1];
|
||
namespaces = ( tns[2] || "" ).split( "." ).sort();
|
||
|
||
// If event changes its type, use the special event handlers for the changed type
|
||
special = jQuery.event.special[ type ] || {};
|
||
|
||
// If selector defined, determine special event api type, otherwise given type
|
||
type = ( selector ? special.delegateType : special.bindType ) || type;
|
||
|
||
// Update special based on newly reset type
|
||
special = jQuery.event.special[ type ] || {};
|
||
|
||
// handleObj is passed to all event handlers
|
||
handleObj = jQuery.extend({
|
||
type: type,
|
||
origType: tns[1],
|
||
data: data,
|
||
handler: handler,
|
||
guid: handler.guid,
|
||
selector: selector,
|
||
needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
|
||
namespace: namespaces.join(".")
|
||
}, handleObjIn );
|
||
|
||
// Init the event handler queue if we're the first
|
||
handlers = events[ type ];
|
||
if ( !handlers ) {
|
||
handlers = events[ type ] = [];
|
||
handlers.delegateCount = 0;
|
||
|
||
// Only use addEventListener/attachEvent if the special events handler returns false
|
||
if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
|
||
// Bind the global event handler to the element
|
||
if ( elem.addEventListener ) {
|
||
elem.addEventListener( type, eventHandle, false );
|
||
|
||
} else if ( elem.attachEvent ) {
|
||
elem.attachEvent( "on" + type, eventHandle );
|
||
}
|
||
}
|
||
}
|
||
|
||
if ( special.add ) {
|
||
special.add.call( elem, handleObj );
|
||
|
||
if ( !handleObj.handler.guid ) {
|
||
handleObj.handler.guid = handler.guid;
|
||
}
|
||
}
|
||
|
||
// Add to the element's handler list, delegates in front
|
||
if ( selector ) {
|
||
handlers.splice( handlers.delegateCount++, 0, handleObj );
|
||
} else {
|
||
handlers.push( handleObj );
|
||
}
|
||
|
||
// Keep track of which events have ever been used, for event optimization
|
||
jQuery.event.global[ type ] = true;
|
||
}
|
||
|
||
// Nullify elem to prevent memory leaks in IE
|
||
elem = null;
|
||
},
|
||
|
||
global: {},
|
||
|
||
// Detach an event or set of events from an element
|
||
remove: function( elem, types, handler, selector, mappedTypes ) {
|
||
|
||
var t, tns, type, origType, namespaces, origCount,
|
||
j, events, special, eventType, handleObj,
|
||
elemData = jQuery.hasData( elem ) && jQuery._data( elem );
|
||
|
||
if ( !elemData || !(events = elemData.events) ) {
|
||
return;
|
||
}
|
||
|
||
// Once for each type.namespace in types; type may be omitted
|
||
types = jQuery.trim( hoverHack( types || "" ) ).split(" ");
|
||
for ( t = 0; t < types.length; t++ ) {
|
||
tns = rtypenamespace.exec( types[t] ) || [];
|
||
type = origType = tns[1];
|
||
namespaces = tns[2];
|
||
|
||
// Unbind all events (on this namespace, if provided) for the element
|
||
if ( !type ) {
|
||
for ( type in events ) {
|
||
jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
|
||
}
|
||
continue;
|
||
}
|
||
|
||
special = jQuery.event.special[ type ] || {};
|
||
type = ( selector? special.delegateType : special.bindType ) || type;
|
||
eventType = events[ type ] || [];
|
||
origCount = eventType.length;
|
||
namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.|)") + "(\\.|$)") : null;
|
||
|
||
// Remove matching events
|
||
for ( j = 0; j < eventType.length; j++ ) {
|
||
handleObj = eventType[ j ];
|
||
|
||
if ( ( mappedTypes || origType === handleObj.origType ) &&
|
||
( !handler || handler.guid === handleObj.guid ) &&
|
||
( !namespaces || namespaces.test( handleObj.namespace ) ) &&
|
||
( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
|
||
eventType.splice( j--, 1 );
|
||
|
||
if ( handleObj.selector ) {
|
||
eventType.delegateCount--;
|
||
}
|
||
if ( special.remove ) {
|
||
special.remove.call( elem, handleObj );
|
||
}
|
||
}
|
||
}
|
||
|
||
// Remove generic event handler if we removed something and no more handlers exist
|
||
// (avoids potential for endless recursion during removal of special event handlers)
|
||
if ( eventType.length === 0 && origCount !== eventType.length ) {
|
||
if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
|
||
jQuery.removeEvent( elem, type, elemData.handle );
|
||
}
|
||
|
||
delete events[ type ];
|
||
}
|
||
}
|
||
|
||
// Remove the expando if it's no longer used
|
||
if ( jQuery.isEmptyObject( events ) ) {
|
||
delete elemData.handle;
|
||
|
||
// removeData also checks for emptiness and clears the expando if empty
|
||
// so use it instead of delete
|
||
jQuery.removeData( elem, "events", true );
|
||
}
|
||
},
|
||
|
||
// Events that are safe to short-circuit if no handlers are attached.
|
||
// Native DOM events should not be added, they may have inline handlers.
|
||
customEvent: {
|
||
"getData": true,
|
||
"setData": true,
|
||
"changeData": true
|
||
},
|
||
|
||
trigger: function( event, data, elem, onlyHandlers ) {
|
||
// Don't do events on text and comment nodes
|
||
if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) {
|
||
return;
|
||
}
|
||
|
||
// Event object or event type
|
||
var cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType,
|
||
type = event.type || event,
|
||
namespaces = [];
|
||
|
||
// focus/blur morphs to focusin/out; ensure we're not firing them right now
|
||
if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
|
||
return;
|
||
}
|
||
|
||
if ( type.indexOf( "!" ) >= 0 ) {
|
||
// Exclusive events trigger only for the exact event (no namespaces)
|
||
type = type.slice(0, -1);
|
||
exclusive = true;
|
||
}
|
||
|
||
if ( type.indexOf( "." ) >= 0 ) {
|
||
// Namespaced trigger; create a regexp to match event type in handle()
|
||
namespaces = type.split(".");
|
||
type = namespaces.shift();
|
||
namespaces.sort();
|
||
}
|
||
|
||
if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) {
|
||
// No jQuery handlers for this event type, and it can't have inline handlers
|
||
return;
|
||
}
|
||
|
||
// Caller can pass in an Event, Object, or just an event type string
|
||
event = typeof event === "object" ?
|
||
// jQuery.Event object
|
||
event[ jQuery.expando ] ? event :
|
||
// Object literal
|
||
new jQuery.Event( type, event ) :
|
||
// Just the event type (string)
|
||
new jQuery.Event( type );
|
||
|
||
event.type = type;
|
||
event.isTrigger = true;
|
||
event.exclusive = exclusive;
|
||
event.namespace = namespaces.join( "." );
|
||
event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)") : null;
|
||
ontype = type.indexOf( ":" ) < 0 ? "on" + type : "";
|
||
|
||
// Handle a global trigger
|
||
if ( !elem ) {
|
||
|
||
// TODO: Stop taunting the data cache; remove global events and always attach to document
|
||
cache = jQuery.cache;
|
||
for ( i in cache ) {
|
||
if ( cache[ i ].events && cache[ i ].events[ type ] ) {
|
||
jQuery.event.trigger( event, data, cache[ i ].handle.elem, true );
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
|
||
// Clean up the event in case it is being reused
|
||
event.result = undefined;
|
||
if ( !event.target ) {
|
||
event.target = elem;
|
||
}
|
||
|
||
// Clone any incoming data and prepend the event, creating the handler arg list
|
||
data = data != null ? jQuery.makeArray( data ) : [];
|
||
data.unshift( event );
|
||
|
||
// Allow special events to draw outside the lines
|
||
special = jQuery.event.special[ type ] || {};
|
||
if ( special.trigger && special.trigger.apply( elem, data ) === false ) {
|
||
return;
|
||
}
|
||
|
||
// Determine event propagation path in advance, per W3C events spec (#9951)
|
||
// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
|
||
eventPath = [[ elem, special.bindType || type ]];
|
||
if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
|
||
|
||
bubbleType = special.delegateType || type;
|
||
cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode;
|
||
for ( old = elem; cur; cur = cur.parentNode ) {
|
||
eventPath.push([ cur, bubbleType ]);
|
||
old = cur;
|
||
}
|
||
|
||
// Only add window if we got to document (e.g., not plain obj or detached DOM)
|
||
if ( old === (elem.ownerDocument || document) ) {
|
||
eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]);
|
||
}
|
||
}
|
||
|
||
// Fire handlers on the event path
|
||
for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) {
|
||
|
||
cur = eventPath[i][0];
|
||
event.type = eventPath[i][1];
|
||
|
||
handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" );
|
||
if ( handle ) {
|
||
handle.apply( cur, data );
|
||
}
|
||
// Note that this is a bare JS function and not a jQuery handler
|
||
handle = ontype && cur[ ontype ];
|
||
if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) {
|
||
event.preventDefault();
|
||
}
|
||
}
|
||
event.type = type;
|
||
|
||
// If nobody prevented the default action, do it now
|
||
if ( !onlyHandlers && !event.isDefaultPrevented() ) {
|
||
|
||
if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) &&
|
||
!(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) {
|
||
|
||
// Call a native DOM method on the target with the same name name as the event.
|
||
// Can't use an .isFunction() check here because IE6/7 fails that test.
|
||
// Don't do default actions on window, that's where global variables be (#6170)
|
||
// IE<9 dies on focus/blur to hidden element (#1486)
|
||
if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) {
|
||
|
||
// Don't re-trigger an onFOO event when we call its FOO() method
|
||
old = elem[ ontype ];
|
||
|
||
if ( old ) {
|
||
elem[ ontype ] = null;
|
||
}
|
||
|
||
// Prevent re-triggering of the same event, since we already bubbled it above
|
||
jQuery.event.triggered = type;
|
||
elem[ type ]();
|
||
jQuery.event.triggered = undefined;
|
||
|
||
if ( old ) {
|
||
elem[ ontype ] = old;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return event.result;
|
||
},
|
||
|
||
dispatch: function( event ) {
|
||
|
||
// Make a writable jQuery.Event from the native event object
|
||
event = jQuery.event.fix( event || window.event );
|
||
|
||
var i, j, cur, ret, selMatch, matched, matches, handleObj, sel, related,
|
||
handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []),
|
||
delegateCount = handlers.delegateCount,
|
||
args = core_slice.call( arguments ),
|
||
run_all = !event.exclusive && !event.namespace,
|
||
special = jQuery.event.special[ event.type ] || {},
|
||
handlerQueue = [];
|
||
|
||
// Use the fix-ed jQuery.Event rather than the (read-only) native event
|
||
args[0] = event;
|
||
event.delegateTarget = this;
|
||
|
||
// Call the preDispatch hook for the mapped type, and let it bail if desired
|
||
if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
|
||
return;
|
||
}
|
||
|
||
// Determine handlers that should run if there are delegated events
|
||
// Avoid non-left-click bubbling in Firefox (#3861)
|
||
if ( delegateCount && !(event.button && event.type === "click") ) {
|
||
|
||
for ( cur = event.target; cur != this; cur = cur.parentNode || this ) {
|
||
|
||
// Don't process clicks (ONLY) on disabled elements (#6911, #8165, #11382, #11764)
|
||
if ( cur.disabled !== true || event.type !== "click" ) {
|
||
selMatch = {};
|
||
matches = [];
|
||
for ( i = 0; i < delegateCount; i++ ) {
|
||
handleObj = handlers[ i ];
|
||
sel = handleObj.selector;
|
||
|
||
if ( selMatch[ sel ] === undefined ) {
|
||
selMatch[ sel ] = handleObj.needsContext ?
|
||
jQuery( sel, this ).index( cur ) >= 0 :
|
||
jQuery.find( sel, this, null, [ cur ] ).length;
|
||
}
|
||
if ( selMatch[ sel ] ) {
|
||
matches.push( handleObj );
|
||
}
|
||
}
|
||
if ( matches.length ) {
|
||
handlerQueue.push({ elem: cur, matches: matches });
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Add the remaining (directly-bound) handlers
|
||
if ( handlers.length > delegateCount ) {
|
||
handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) });
|
||
}
|
||
|
||
// Run delegates first; they may want to stop propagation beneath us
|
||
for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) {
|
||
matched = handlerQueue[ i ];
|
||
event.currentTarget = matched.elem;
|
||
|
||
for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) {
|
||
handleObj = matched.matches[ j ];
|
||
|
||
// Triggered event must either 1) be non-exclusive and have no namespace, or
|
||
// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
|
||
if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) {
|
||
|
||
event.data = handleObj.data;
|
||
event.handleObj = handleObj;
|
||
|
||
ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
|
||
.apply( matched.elem, args );
|
||
|
||
if ( ret !== undefined ) {
|
||
event.result = ret;
|
||
if ( ret === false ) {
|
||
event.preventDefault();
|
||
event.stopPropagation();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Call the postDispatch hook for the mapped type
|
||
if ( special.postDispatch ) {
|
||
special.postDispatch.call( this, event );
|
||
}
|
||
|
||
return event.result;
|
||
},
|
||
|
||
// Includes some event props shared by KeyEvent and MouseEvent
|
||
// *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 ***
|
||
props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
|
||
|
||
fixHooks: {},
|
||
|
||
keyHooks: {
|
||
props: "char charCode key keyCode".split(" "),
|
||
filter: function( event, original ) {
|
||
|
||
// Add which for key events
|
||
if ( event.which == null ) {
|
||
event.which = original.charCode != null ? original.charCode : original.keyCode;
|
||
}
|
||
|
||
return event;
|
||
}
|
||
},
|
||
|
||
mouseHooks: {
|
||
props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
|
||
filter: function( event, original ) {
|
||
var eventDoc, doc, body,
|
||
button = original.button,
|
||
fromElement = original.fromElement;
|
||
|
||
// Calculate pageX/Y if missing and clientX/Y available
|
||
if ( event.pageX == null && original.clientX != null ) {
|
||
eventDoc = event.target.ownerDocument || document;
|
||
doc = eventDoc.documentElement;
|
||
body = eventDoc.body;
|
||
|
||
event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
|
||
event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
|
||
}
|
||
|
||
// Add relatedTarget, if necessary
|
||
if ( !event.relatedTarget && fromElement ) {
|
||
event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
|
||
}
|
||
|
||
// Add which for click: 1 === left; 2 === middle; 3 === right
|
||
// Note: button is not normalized, so don't use it
|
||
if ( !event.which && button !== undefined ) {
|
||
event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
|
||
}
|
||
|
||
return event;
|
||
}
|
||
},
|
||
|
||
fix: function( event ) {
|
||
if ( event[ jQuery.expando ] ) {
|
||
return event;
|
||
}
|
||
|
||
// Create a writable copy of the event object and normalize some properties
|
||
var i, prop,
|
||
originalEvent = event,
|
||
fixHook = jQuery.event.fixHooks[ event.type ] || {},
|
||
copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
|
||
|
||
event = jQuery.Event( originalEvent );
|
||
|
||
for ( i = copy.length; i; ) {
|
||
prop = copy[ --i ];
|
||
event[ prop ] = originalEvent[ prop ];
|
||
}
|
||
|
||
// Fix target property, if necessary (#1925, IE 6/7/8 & Safari2)
|
||
if ( !event.target ) {
|
||
event.target = originalEvent.srcElement || document;
|
||
}
|
||
|
||
// Target should not be a text node (#504, Safari)
|
||
if ( event.target.nodeType === 3 ) {
|
||
event.target = event.target.parentNode;
|
||
}
|
||
|
||
// For mouse/key events, metaKey==false if it's undefined (#3368, #11328; IE6/7/8)
|
||
event.metaKey = !!event.metaKey;
|
||
|
||
return fixHook.filter? fixHook.filter( event, originalEvent ) : event;
|
||
},
|
||
|
||
special: {
|
||
load: {
|
||
// Prevent triggered image.load events from bubbling to window.load
|
||
noBubble: true
|
||
},
|
||
|
||
focus: {
|
||
delegateType: "focusin"
|
||
},
|
||
blur: {
|
||
delegateType: "focusout"
|
||
},
|
||
|
||
beforeunload: {
|
||
setup: function( data, namespaces, eventHandle ) {
|
||
// We only want to do this special case on windows
|
||
if ( jQuery.isWindow( this ) ) {
|
||
this.onbeforeunload = eventHandle;
|
||
}
|
||
},
|
||
|
||
teardown: function( namespaces, eventHandle ) {
|
||
if ( this.onbeforeunload === eventHandle ) {
|
||
this.onbeforeunload = null;
|
||
}
|
||
}
|
||
}
|
||
},
|
||
|
||
simulate: function( type, elem, event, bubble ) {
|
||
// Piggyback on a donor event to simulate a different one.
|
||
// Fake originalEvent to avoid donor's stopPropagation, but if the
|
||
// simulated event prevents default then we do the same on the donor.
|
||
var e = jQuery.extend(
|
||
new jQuery.Event(),
|
||
event,
|
||
{ type: type,
|
||
isSimulated: true,
|
||
originalEvent: {}
|
||
}
|
||
);
|
||
if ( bubble ) {
|
||
jQuery.event.trigger( e, null, elem );
|
||
} else {
|
||
jQuery.event.dispatch.call( elem, e );
|
||
}
|
||
if ( e.isDefaultPrevented() ) {
|
||
event.preventDefault();
|
||
}
|
||
}
|
||
};
|
||
|
||
// Some plugins are using, but it's undocumented/deprecated and will be removed.
|
||
// The 1.7 special event interface should provide all the hooks needed now.
|
||
jQuery.event.handle = jQuery.event.dispatch;
|
||
|
||
jQuery.removeEvent = document.removeEventListener ?
|
||
function( elem, type, handle ) {
|
||
if ( elem.removeEventListener ) {
|
||
elem.removeEventListener( type, handle, false );
|
||
}
|
||
} :
|
||
function( elem, type, handle ) {
|
||
var name = "on" + type;
|
||
|
||
if ( elem.detachEvent ) {
|
||
|
||
// #8545, #7054, preventing memory leaks for custom events in IE6-8
|
||
// detachEvent needed property on element, by name of that event, to properly expose it to GC
|
||
if ( typeof elem[ name ] === "undefined" ) {
|
||
elem[ name ] = null;
|
||
}
|
||
|
||
elem.detachEvent( name, handle );
|
||
}
|
||
};
|
||
|
||
jQuery.Event = function( src, props ) {
|
||
// Allow instantiation without the 'new' keyword
|
||
if ( !(this instanceof jQuery.Event) ) {
|
||
return new jQuery.Event( src, props );
|
||
}
|
||
|
||
// Event object
|
||
if ( src && src.type ) {
|
||
this.originalEvent = src;
|
||
this.type = src.type;
|
||
|
||
// Events bubbling up the document may have been marked as prevented
|
||
// by a handler lower down the tree; reflect the correct value.
|
||
this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false ||
|
||
src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;
|
||
|
||
// Event type
|
||
} else {
|
||
this.type = src;
|
||
}
|
||
|
||
// Put explicitly provided properties onto the event object
|
||
if ( props ) {
|
||
jQuery.extend( this, props );
|
||
}
|
||
|
||
// Create a timestamp if incoming event doesn't have one
|
||
this.timeStamp = src && src.timeStamp || jQuery.now();
|
||
|
||
// Mark it as fixed
|
||
this[ jQuery.expando ] = true;
|
||
};
|
||
|
||
function returnFalse() {
|
||
return false;
|
||
}
|
||
function returnTrue() {
|
||
return true;
|
||
}
|
||
|
||
// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
|
||
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
|
||
jQuery.Event.prototype = {
|
||
preventDefault: function() {
|
||
this.isDefaultPrevented = returnTrue;
|
||
|
||
var e = this.originalEvent;
|
||
if ( !e ) {
|
||
return;
|
||
}
|
||
|
||
// if preventDefault exists run it on the original event
|
||
if ( e.preventDefault ) {
|
||
e.preventDefault();
|
||
|
||
// otherwise set the returnValue property of the original event to false (IE)
|
||
} else {
|
||
e.returnValue = false;
|
||
}
|
||
},
|
||
stopPropagation: function() {
|
||
this.isPropagationStopped = returnTrue;
|
||
|
||
var e = this.originalEvent;
|
||
if ( !e ) {
|
||
return;
|
||
}
|
||
// if stopPropagation exists run it on the original event
|
||
if ( e.stopPropagation ) {
|
||
e.stopPropagation();
|
||
}
|
||
// otherwise set the cancelBubble property of the original event to true (IE)
|
||
e.cancelBubble = true;
|
||
},
|
||
stopImmediatePropagation: function() {
|
||
this.isImmediatePropagationStopped = returnTrue;
|
||
this.stopPropagation();
|
||
},
|
||
isDefaultPrevented: returnFalse,
|
||
isPropagationStopped: returnFalse,
|
||
isImmediatePropagationStopped: returnFalse
|
||
};
|
||
|
||
// Create mouseenter/leave events using mouseover/out and event-time checks
|
||
jQuery.each({
|
||
mouseenter: "mouseover",
|
||
mouseleave: "mouseout"
|
||
}, function( orig, fix ) {
|
||
jQuery.event.special[ orig ] = {
|
||
delegateType: fix,
|
||
bindType: fix,
|
||
|
||
handle: function( event ) {
|
||
var ret,
|
||
target = this,
|
||
related = event.relatedTarget,
|
||
handleObj = event.handleObj,
|
||
selector = handleObj.selector;
|
||
|
||
// For mousenter/leave call the handler if related is outside the target.
|
||
// NB: No relatedTarget if the mouse left/entered the browser window
|
||
if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
|
||
event.type = handleObj.origType;
|
||
ret = handleObj.handler.apply( this, arguments );
|
||
event.type = fix;
|
||
}
|
||
return ret;
|
||
}
|
||
};
|
||
});
|
||
|
||
// IE submit delegation
|
||
if ( !jQuery.support.submitBubbles ) {
|
||
|
||
jQuery.event.special.submit = {
|
||
setup: function() {
|
||
// Only need this for delegated form submit events
|
||
if ( jQuery.nodeName( this, "form" ) ) {
|
||
return false;
|
||
}
|
||
|
||
// Lazy-add a submit handler when a descendant form may potentially be submitted
|
||
jQuery.event.add( this, "click._submit keypress._submit", function( e ) {
|
||
// Node name check avoids a VML-related crash in IE (#9807)
|
||
var elem = e.target,
|
||
form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined;
|
||
if ( form && !jQuery._data( form, "_submit_attached" ) ) {
|
||
jQuery.event.add( form, "submit._submit", function( event ) {
|
||
event._submit_bubble = true;
|
||
});
|
||
jQuery._data( form, "_submit_attached", true );
|
||
}
|
||
});
|
||
// return undefined since we don't need an event listener
|
||
},
|
||
|
||
postDispatch: function( event ) {
|
||
// If form was submitted by the user, bubble the event up the tree
|
||
if ( event._submit_bubble ) {
|
||
delete event._submit_bubble;
|
||
if ( this.parentNode && !event.isTrigger ) {
|
||
jQuery.event.simulate( "submit", this.parentNode, event, true );
|
||
}
|
||
}
|
||
},
|
||
|
||
teardown: function() {
|
||
// Only need this for delegated form submit events
|
||
if ( jQuery.nodeName( this, "form" ) ) {
|
||
return false;
|
||
}
|
||
|
||
// Remove delegated handlers; cleanData eventually reaps submit handlers attached above
|
||
jQuery.event.remove( this, "._submit" );
|
||
}
|
||
};
|
||
}
|
||
|
||
// IE change delegation and checkbox/radio fix
|
||
if ( !jQuery.support.changeBubbles ) {
|
||
|
||
jQuery.event.special.change = {
|
||
|
||
setup: function() {
|
||
|
||
if ( rformElems.test( this.nodeName ) ) {
|
||
// IE doesn't fire change on a check/radio until blur; trigger it on click
|
||
// after a propertychange. Eat the blur-change in special.change.handle.
|
||
// This still fires onchange a second time for check/radio after blur.
|
||
if ( this.type === "checkbox" || this.type === "radio" ) {
|
||
jQuery.event.add( this, "propertychange._change", function( event ) {
|
||
if ( event.originalEvent.propertyName === "checked" ) {
|
||
this._just_changed = true;
|
||
}
|
||
});
|
||
jQuery.event.add( this, "click._change", function( event ) {
|
||
if ( this._just_changed && !event.isTrigger ) {
|
||
this._just_changed = false;
|
||
}
|
||
// Allow triggered, simulated change events (#11500)
|
||
jQuery.event.simulate( "change", this, event, true );
|
||
});
|
||
}
|
||
return false;
|
||
}
|
||
// Delegated event; lazy-add a change handler on descendant inputs
|
||
jQuery.event.add( this, "beforeactivate._change", function( e ) {
|
||
var elem = e.target;
|
||
|
||
if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "_change_attached" ) ) {
|
||
jQuery.event.add( elem, "change._change", function( event ) {
|
||
if ( this.parentNode && !event.isSimulated && !event.isTrigger ) {
|
||
jQuery.event.simulate( "change", this.parentNode, event, true );
|
||
}
|
||
});
|
||
jQuery._data( elem, "_change_attached", true );
|
||
}
|
||
});
|
||
},
|
||
|
||
handle: function( event ) {
|
||
var elem = event.target;
|
||
|
||
// Swallow native change events from checkbox/radio, we already triggered them above
|
||
if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) {
|
||
return event.handleObj.handler.apply( this, arguments );
|
||
}
|
||
},
|
||
|
||
teardown: function() {
|
||
jQuery.event.remove( this, "._change" );
|
||
|
||
return !rformElems.test( this.nodeName );
|
||
}
|
||
};
|
||
}
|
||
|
||
// Create "bubbling" focus and blur events
|
||
if ( !jQuery.support.focusinBubbles ) {
|
||
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
|
||
|
||
// Attach a single capturing handler while someone wants focusin/focusout
|
||
var attaches = 0,
|
||
handler = function( event ) {
|
||
jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
|
||
};
|
||
|
||
jQuery.event.special[ fix ] = {
|
||
setup: function() {
|
||
if ( attaches++ === 0 ) {
|
||
document.addEventListener( orig, handler, true );
|
||
}
|
||
},
|
||
teardown: function() {
|
||
if ( --attaches === 0 ) {
|
||
document.removeEventListener( orig, handler, true );
|
||
}
|
||
}
|
||
};
|
||
});
|
||
}
|
||
|
||
jQuery.fn.extend({
|
||
|
||
on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
|
||
var origFn, type;
|
||
|
||
// Types can be a map of types/handlers
|
||
if ( typeof types === "object" ) {
|
||
// ( types-Object, selector, data )
|
||
if ( typeof selector !== "string" ) { // && selector != null
|
||
// ( types-Object, data )
|
||
data = data || selector;
|
||
selector = undefined;
|
||
}
|
||
for ( type in types ) {
|
||
this.on( type, selector, data, types[ type ], one );
|
||
}
|
||
return this;
|
||
}
|
||
|
||
if ( data == null && fn == null ) {
|
||
// ( types, fn )
|
||
fn = selector;
|
||
data = selector = undefined;
|
||
} else if ( fn == null ) {
|
||
if ( typeof selector === "string" ) {
|
||
// ( types, selector, fn )
|
||
fn = data;
|
||
data = undefined;
|
||
} else {
|
||
// ( types, data, fn )
|
||
fn = data;
|
||
data = selector;
|
||
selector = undefined;
|
||
}
|
||
}
|
||
if ( fn === false ) {
|
||
fn = returnFalse;
|
||
} else if ( !fn ) {
|
||
return this;
|
||
}
|
||
|
||
if ( one === 1 ) {
|
||
origFn = fn;
|
||
fn = function( event ) {
|
||
// Can use an empty set, since event contains the info
|
||
jQuery().off( event );
|
||
return origFn.apply( this, arguments );
|
||
};
|
||
// Use same guid so caller can remove using origFn
|
||
fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
|
||
}
|
||
return this.each( function() {
|
||
jQuery.event.add( this, types, fn, data, selector );
|
||
});
|
||
},
|
||
one: function( types, selector, data, fn ) {
|
||
return this.on( types, selector, data, fn, 1 );
|
||
},
|
||
off: function( types, selector, fn ) {
|
||
var handleObj, type;
|
||
if ( types && types.preventDefault && types.handleObj ) {
|
||
// ( event ) dispatched jQuery.Event
|
||
handleObj = types.handleObj;
|
||
jQuery( types.delegateTarget ).off(
|
||
handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
|
||
handleObj.selector,
|
||
handleObj.handler
|
||
);
|
||
return this;
|
||
}
|
||
if ( typeof types === "object" ) {
|
||
// ( types-object [, selector] )
|
||
for ( type in types ) {
|
||
this.off( type, selector, types[ type ] );
|
||
}
|
||
return this;
|
||
}
|
||
if ( selector === false || typeof selector === "function" ) {
|
||
// ( types [, fn] )
|
||
fn = selector;
|
||
selector = undefined;
|
||
}
|
||
if ( fn === false ) {
|
||
fn = returnFalse;
|
||
}
|
||
return this.each(function() {
|
||
jQuery.event.remove( this, types, fn, selector );
|
||
});
|
||
},
|
||
|
||
bind: function( types, data, fn ) {
|
||
return this.on( types, null, data, fn );
|
||
},
|
||
unbind: function( types, fn ) {
|
||
return this.off( types, null, fn );
|
||
},
|
||
|
||
live: function( types, data, fn ) {
|
||
jQuery( this.context ).on( types, this.selector, data, fn );
|
||
return this;
|
||
},
|
||
die: function( types, fn ) {
|
||
jQuery( this.context ).off( types, this.selector || "**", fn );
|
||
return this;
|
||
},
|
||
|
||
delegate: function( selector, types, data, fn ) {
|
||
return this.on( types, selector, data, fn );
|
||
},
|
||
undelegate: function( selector, types, fn ) {
|
||
// ( namespace ) or ( selector, types [, fn] )
|
||
return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
|
||
},
|
||
|
||
trigger: function( type, data ) {
|
||
return this.each(function() {
|
||
jQuery.event.trigger( type, data, this );
|
||
});
|
||
},
|
||
triggerHandler: function( type, data ) {
|
||
if ( this[0] ) {
|
||
return jQuery.event.trigger( type, data, this[0], true );
|
||
}
|
||
},
|
||
|
||
toggle: function( fn ) {
|
||
// Save reference to arguments for access in closure
|
||
var args = arguments,
|
||
guid = fn.guid || jQuery.guid++,
|
||
i = 0,
|
||
toggler = function( event ) {
|
||
// Figure out which function to execute
|
||
var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
|
||
jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
|
||
|
||
// Make sure that clicks stop
|
||
event.preventDefault();
|
||
|
||
// and execute the function
|
||
return args[ lastToggle ].apply( this, arguments ) || false;
|
||
};
|
||
|
||
// link all the functions, so any of them can unbind this click handler
|
||
toggler.guid = guid;
|
||
while ( i < args.length ) {
|
||
args[ i++ ].guid = guid;
|
||
}
|
||
|
||
return this.click( toggler );
|
||
},
|
||
|
||
hover: function( fnOver, fnOut ) {
|
||
return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
|
||
}
|
||
});
|
||
|
||
jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
|
||
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
|
||
"change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
|
||
|
||
// Handle event binding
|
||
jQuery.fn[ name ] = function( data, fn ) {
|
||
if ( fn == null ) {
|
||
fn = data;
|
||
data = null;
|
||
}
|
||
|
||
return arguments.length > 0 ?
|
||
this.on( name, null, data, fn ) :
|
||
this.trigger( name );
|
||
};
|
||
|
||
if ( rkeyEvent.test( name ) ) {
|
||
jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks;
|
||
}
|
||
|
||
if ( rmouseEvent.test( name ) ) {
|
||
jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks;
|
||
}
|
||
});
|
||
/*!
|
||
* Sizzle CSS Selector Engine
|
||
* Copyright 2012 jQuery Foundation and other contributors
|
||
* Released under the MIT license
|
||
* http://sizzlejs.com/
|
||
*/
|
||
(function( window, undefined ) {
|
||
|
||
var cachedruns,
|
||
assertGetIdNotName,
|
||
Expr,
|
||
getText,
|
||
isXML,
|
||
contains,
|
||
compile,
|
||
sortOrder,
|
||
hasDuplicate,
|
||
outermostContext,
|
||
|
||
baseHasDuplicate = true,
|
||
strundefined = "undefined",
|
||
|
||
expando = ( "sizcache" + Math.random() ).replace( ".", "" ),
|
||
|
||
Token = String,
|
||
document = window.document,
|
||
docElem = document.documentElement,
|
||
dirruns = 0,
|
||
done = 0,
|
||
pop = [].pop,
|
||
push = [].push,
|
||
slice = [].slice,
|
||
// Use a stripped-down indexOf if a native one is unavailable
|
||
indexOf = [].indexOf || function( elem ) {
|
||
var i = 0,
|
||
len = this.length;
|
||
for ( ; i < len; i++ ) {
|
||
if ( this[i] === elem ) {
|
||
return i;
|
||
}
|
||
}
|
||
return -1;
|
||
},
|
||
|
||
// Augment a function for special use by Sizzle
|
||
markFunction = function( fn, value ) {
|
||
fn[ expando ] = value == null || value;
|
||
return fn;
|
||
},
|
||
|
||
createCache = function() {
|
||
var cache = {},
|
||
keys = [];
|
||
|
||
return markFunction(function( key, value ) {
|
||
// Only keep the most recent entries
|
||
if ( keys.push( key ) > Expr.cacheLength ) {
|
||
delete cache[ keys.shift() ];
|
||
}
|
||
|
||
// Retrieve with (key + " ") to avoid collision with native Object.prototype properties (see Issue #157)
|
||
return (cache[ key + " " ] = value);
|
||
}, cache );
|
||
},
|
||
|
||
classCache = createCache(),
|
||
tokenCache = createCache(),
|
||
compilerCache = createCache(),
|
||
|
||
// Regex
|
||
|
||
// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
|
||
whitespace = "[\\x20\\t\\r\\n\\f]",
|
||
// http://www.w3.org/TR/css3-syntax/#characters
|
||
characterEncoding = "(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",
|
||
|
||
// Loosely modeled on CSS identifier characters
|
||
// An unquoted value should be a CSS identifier (http://www.w3.org/TR/css3-selectors/#attribute-selectors)
|
||
// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
|
||
identifier = characterEncoding.replace( "w", "w#" ),
|
||
|
||
// Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors
|
||
operators = "([*^$|!~]?=)",
|
||
attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace +
|
||
"*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]",
|
||
|
||
// Prefer arguments not in parens/brackets,
|
||
// then attribute selectors and non-pseudos (denoted by :),
|
||
// then anything else
|
||
// These preferences are here to reduce the number of selectors
|
||
// needing tokenize in the PSEUDO preFilter
|
||
pseudos = ":(" + characterEncoding + ")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:" + attributes + ")|[^:]|\\\\.)*|.*))\\)|)",
|
||
|
||
// For matchExpr.POS and matchExpr.needsContext
|
||
pos = ":(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace +
|
||
"*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)",
|
||
|
||
// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
|
||
rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
|
||
|
||
rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
|
||
rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ),
|
||
rpseudo = new RegExp( pseudos ),
|
||
|
||
// Easily-parseable/retrievable ID or TAG or CLASS selectors
|
||
rquickExpr = /^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,
|
||
|
||
rnot = /^:not/,
|
||
rsibling = /[\x20\t\r\n\f]*[+~]/,
|
||
rendsWithNot = /:not\($/,
|
||
|
||
rheader = /h\d/i,
|
||
rinputs = /input|select|textarea|button/i,
|
||
|
||
rbackslash = /\\(?!\\)/g,
|
||
|
||
matchExpr = {
|
||
"ID": new RegExp( "^#(" + characterEncoding + ")" ),
|
||
"CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
|
||
"NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ),
|
||
"TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
|
||
"ATTR": new RegExp( "^" + attributes ),
|
||
"PSEUDO": new RegExp( "^" + pseudos ),
|
||
"POS": new RegExp( pos, "i" ),
|
||
"CHILD": new RegExp( "^:(only|nth|first|last)-child(?:\\(" + whitespace +
|
||
"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
|
||
"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
|
||
// For use in libraries implementing .is()
|
||
"needsContext": new RegExp( "^" + whitespace + "*[>+~]|" + pos, "i" )
|
||
},
|
||
|
||
// Support
|
||
|
||
// Used for testing something on an element
|
||
assert = function( fn ) {
|
||
var div = document.createElement("div");
|
||
|
||
try {
|
||
return fn( div );
|
||
} catch (e) {
|
||
return false;
|
||
} finally {
|
||
// release memory in IE
|
||
div = null;
|
||
}
|
||
},
|
||
|
||
// Check if getElementsByTagName("*") returns only elements
|
||
assertTagNameNoComments = assert(function( div ) {
|
||
div.appendChild( document.createComment("") );
|
||
return !div.getElementsByTagName("*").length;
|
||
}),
|
||
|
||
// Check if getAttribute returns normalized href attributes
|
||
assertHrefNotNormalized = assert(function( div ) {
|
||
div.innerHTML = "<a href='#'></a>";
|
||
return div.firstChild && typeof div.firstChild.getAttribute !== strundefined &&
|
||
div.firstChild.getAttribute("href") === "#";
|
||
}),
|
||
|
||
// Check if attributes should be retrieved by attribute nodes
|
||
assertAttributes = assert(function( div ) {
|
||
div.innerHTML = "<select></select>";
|
||
var type = typeof div.lastChild.getAttribute("multiple");
|
||
// IE8 returns a string for some attributes even when not present
|
||
return type !== "boolean" && type !== "string";
|
||
}),
|
||
|
||
// Check if getElementsByClassName can be trusted
|
||
assertUsableClassName = assert(function( div ) {
|
||
// Opera can't find a second classname (in 9.6)
|
||
div.innerHTML = "<div class='hidden e'></div><div class='hidden'></div>";
|
||
if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) {
|
||
return false;
|
||
}
|
||
|
||
// Safari 3.2 caches class attributes and doesn't catch changes
|
||
div.lastChild.className = "e";
|
||
return div.getElementsByClassName("e").length === 2;
|
||
}),
|
||
|
||
// Check if getElementById returns elements by name
|
||
// Check if getElementsByName privileges form controls or returns elements by ID
|
||
assertUsableName = assert(function( div ) {
|
||
// Inject content
|
||
div.id = expando + 0;
|
||
div.innerHTML = "<a name='" + expando + "'></a><div name='" + expando + "'></div>";
|
||
docElem.insertBefore( div, docElem.firstChild );
|
||
|
||
// Test
|
||
var pass = document.getElementsByName &&
|
||
// buggy browsers will return fewer than the correct 2
|
||
document.getElementsByName( expando ).length === 2 +
|
||
// buggy browsers will return more than the correct 0
|
||
document.getElementsByName( expando + 0 ).length;
|
||
assertGetIdNotName = !document.getElementById( expando );
|
||
|
||
// Cleanup
|
||
docElem.removeChild( div );
|
||
|
||
return pass;
|
||
});
|
||
|
||
// If slice is not available, provide a backup
|
||
try {
|
||
slice.call( docElem.childNodes, 0 )[0].nodeType;
|
||
} catch ( e ) {
|
||
slice = function( i ) {
|
||
var elem,
|
||
results = [];
|
||
for ( ; (elem = this[i]); i++ ) {
|
||
results.push( elem );
|
||
}
|
||
return results;
|
||
};
|
||
}
|
||
|
||
function Sizzle( selector, context, results, seed ) {
|
||
results = results || [];
|
||
context = context || document;
|
||
var match, elem, xml, m,
|
||
nodeType = context.nodeType;
|
||
|
||
if ( !selector || typeof selector !== "string" ) {
|
||
return results;
|
||
}
|
||
|
||
if ( nodeType !== 1 && nodeType !== 9 ) {
|
||
return [];
|
||
}
|
||
|
||
xml = isXML( context );
|
||
|
||
if ( !xml && !seed ) {
|
||
if ( (match = rquickExpr.exec( selector )) ) {
|
||
// Speed-up: Sizzle("#ID")
|
||
if ( (m = match[1]) ) {
|
||
if ( nodeType === 9 ) {
|
||
elem = context.getElementById( m );
|
||
// Check parentNode to catch when Blackberry 4.6 returns
|
||
// nodes that are no longer in the document #6963
|
||
if ( elem && elem.parentNode ) {
|
||
// Handle the case where IE, Opera, and Webkit return items
|
||
// by name instead of ID
|
||
if ( elem.id === m ) {
|
||
results.push( elem );
|
||
return results;
|
||
}
|
||
} else {
|
||
return results;
|
||
}
|
||
} else {
|
||
// Context is not a document
|
||
if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
|
||
contains( context, elem ) && elem.id === m ) {
|
||
results.push( elem );
|
||
return results;
|
||
}
|
||
}
|
||
|
||
// Speed-up: Sizzle("TAG")
|
||
} else if ( match[2] ) {
|
||
push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) );
|
||
return results;
|
||
|
||
// Speed-up: Sizzle(".CLASS")
|
||
} else if ( (m = match[3]) && assertUsableClassName && context.getElementsByClassName ) {
|
||
push.apply( results, slice.call(context.getElementsByClassName( m ), 0) );
|
||
return results;
|
||
}
|
||
}
|
||
}
|
||
|
||
// All others
|
||
return select( selector.replace( rtrim, "$1" ), context, results, seed, xml );
|
||
}
|
||
|
||
Sizzle.matches = function( expr, elements ) {
|
||
return Sizzle( expr, null, null, elements );
|
||
};
|
||
|
||
Sizzle.matchesSelector = function( elem, expr ) {
|
||
return Sizzle( expr, null, null, [ elem ] ).length > 0;
|
||
};
|
||
|
||
// Returns a function to use in pseudos for input types
|
||
function createInputPseudo( type ) {
|
||
return function( elem ) {
|
||
var name = elem.nodeName.toLowerCase();
|
||
return name === "input" && elem.type === type;
|
||
};
|
||
}
|
||
|
||
// Returns a function to use in pseudos for buttons
|
||
function createButtonPseudo( type ) {
|
||
return function( elem ) {
|
||
var name = elem.nodeName.toLowerCase();
|
||
return (name === "input" || name === "button") && elem.type === type;
|
||
};
|
||
}
|
||
|
||
// Returns a function to use in pseudos for positionals
|
||
function createPositionalPseudo( fn ) {
|
||
return markFunction(function( argument ) {
|
||
argument = +argument;
|
||
return markFunction(function( seed, matches ) {
|
||
var j,
|
||
matchIndexes = fn( [], seed.length, argument ),
|
||
i = matchIndexes.length;
|
||
|
||
// Match elements found at the specified indexes
|
||
while ( i-- ) {
|
||
if ( seed[ (j = matchIndexes[i]) ] ) {
|
||
seed[j] = !(matches[j] = seed[j]);
|
||
}
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
/**
|
||
* Utility function for retrieving the text value of an array of DOM nodes
|
||
* @param {Array|Element} elem
|
||
*/
|
||
getText = Sizzle.getText = function( elem ) {
|
||
var node,
|
||
ret = "",
|
||
i = 0,
|
||
nodeType = elem.nodeType;
|
||
|
||
if ( nodeType ) {
|
||
if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
|
||
// Use textContent for elements
|
||
// innerText usage removed for consistency of new lines (see #11153)
|
||
if ( typeof elem.textContent === "string" ) {
|
||
return elem.textContent;
|
||
} else {
|
||
// Traverse its children
|
||
for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
|
||
ret += getText( elem );
|
||
}
|
||
}
|
||
} else if ( nodeType === 3 || nodeType === 4 ) {
|
||
return elem.nodeValue;
|
||
}
|
||
// Do not include comment or processing instruction nodes
|
||
} else {
|
||
|
||
// If no nodeType, this is expected to be an array
|
||
for ( ; (node = elem[i]); i++ ) {
|
||
// Do not traverse comment nodes
|
||
ret += getText( node );
|
||
}
|
||
}
|
||
return ret;
|
||
};
|
||
|
||
isXML = Sizzle.isXML = function( elem ) {
|
||
// documentElement is verified for cases where it doesn't yet exist
|
||
// (such as loading iframes in IE - #4833)
|
||
var documentElement = elem && (elem.ownerDocument || elem).documentElement;
|
||
return documentElement ? documentElement.nodeName !== "HTML" : false;
|
||
};
|
||
|
||
// Element contains another
|
||
contains = Sizzle.contains = docElem.contains ?
|
||
function( a, b ) {
|
||
var adown = a.nodeType === 9 ? a.documentElement : a,
|
||
bup = b && b.parentNode;
|
||
return a === bup || !!( bup && bup.nodeType === 1 && adown.contains && adown.contains(bup) );
|
||
} :
|
||
docElem.compareDocumentPosition ?
|
||
function( a, b ) {
|
||
return b && !!( a.compareDocumentPosition( b ) & 16 );
|
||
} :
|
||
function( a, b ) {
|
||
while ( (b = b.parentNode) ) {
|
||
if ( b === a ) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
};
|
||
|
||
Sizzle.attr = function( elem, name ) {
|
||
var val,
|
||
xml = isXML( elem );
|
||
|
||
if ( !xml ) {
|
||
name = name.toLowerCase();
|
||
}
|
||
if ( (val = Expr.attrHandle[ name ]) ) {
|
||
return val( elem );
|
||
}
|
||
if ( xml || assertAttributes ) {
|
||
return elem.getAttribute( name );
|
||
}
|
||
val = elem.getAttributeNode( name );
|
||
return val ?
|
||
typeof elem[ name ] === "boolean" ?
|
||
elem[ name ] ? name : null :
|
||
val.specified ? val.value : null :
|
||
null;
|
||
};
|
||
|
||
Expr = Sizzle.selectors = {
|
||
|
||
// Can be adjusted by the user
|
||
cacheLength: 50,
|
||
|
||
createPseudo: markFunction,
|
||
|
||
match: matchExpr,
|
||
|
||
// IE6/7 return a modified href
|
||
attrHandle: assertHrefNotNormalized ?
|
||
{} :
|
||
{
|
||
"href": function( elem ) {
|
||
return elem.getAttribute( "href", 2 );
|
||
},
|
||
"type": function( elem ) {
|
||
return elem.getAttribute("type");
|
||
}
|
||
},
|
||
|
||
find: {
|
||
"ID": assertGetIdNotName ?
|
||
function( id, context, xml ) {
|
||
if ( typeof context.getElementById !== strundefined && !xml ) {
|
||
var m = context.getElementById( id );
|
||
// Check parentNode to catch when Blackberry 4.6 returns
|
||
// nodes that are no longer in the document #6963
|
||
return m && m.parentNode ? [m] : [];
|
||
}
|
||
} :
|
||
function( id, context, xml ) {
|
||
if ( typeof context.getElementById !== strundefined && !xml ) {
|
||
var m = context.getElementById( id );
|
||
|
||
return m ?
|
||
m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ?
|
||
[m] :
|
||
undefined :
|
||
[];
|
||
}
|
||
},
|
||
|
||
"TAG": assertTagNameNoComments ?
|
||
function( tag, context ) {
|
||
if ( typeof context.getElementsByTagName !== strundefined ) {
|
||
return context.getElementsByTagName( tag );
|
||
}
|
||
} :
|
||
function( tag, context ) {
|
||
var results = context.getElementsByTagName( tag );
|
||
|
||
// Filter out possible comments
|
||
if ( tag === "*" ) {
|
||
var elem,
|
||
tmp = [],
|
||
i = 0;
|
||
|
||
for ( ; (elem = results[i]); i++ ) {
|
||
if ( elem.nodeType === 1 ) {
|
||
tmp.push( elem );
|
||
}
|
||
}
|
||
|
||
return tmp;
|
||
}
|
||
return results;
|
||
},
|
||
|
||
"NAME": assertUsableName && function( tag, context ) {
|
||
if ( typeof context.getElementsByName !== strundefined ) {
|
||
return context.getElementsByName( name );
|
||
}
|
||
},
|
||
|
||
"CLASS": assertUsableClassName && function( className, context, xml ) {
|
||
if ( typeof context.getElementsByClassName !== strundefined && !xml ) {
|
||
return context.getElementsByClassName( className );
|
||
}
|
||
}
|
||
},
|
||
|
||
relative: {
|
||
">": { dir: "parentNode", first: true },
|
||
" ": { dir: "parentNode" },
|
||
"+": { dir: "previousSibling", first: true },
|
||
"~": { dir: "previousSibling" }
|
||
},
|
||
|
||
preFilter: {
|
||
"ATTR": function( match ) {
|
||
match[1] = match[1].replace( rbackslash, "" );
|
||
|
||
// Move the given value to match[3] whether quoted or unquoted
|
||
match[3] = ( match[4] || match[5] || "" ).replace( rbackslash, "" );
|
||
|
||
if ( match[2] === "~=" ) {
|
||
match[3] = " " + match[3] + " ";
|
||
}
|
||
|
||
return match.slice( 0, 4 );
|
||
},
|
||
|
||
"CHILD": function( match ) {
|
||
/* matches from matchExpr["CHILD"]
|
||
1 type (only|nth|...)
|
||
2 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
|
||
3 xn-component of xn+y argument ([+-]?\d*n|)
|
||
4 sign of xn-component
|
||
5 x of xn-component
|
||
6 sign of y-component
|
||
7 y of y-component
|
||
*/
|
||
match[1] = match[1].toLowerCase();
|
||
|
||
if ( match[1] === "nth" ) {
|
||
// nth-child requires argument
|
||
if ( !match[2] ) {
|
||
Sizzle.error( match[0] );
|
||
}
|
||
|
||
// numeric x and y parameters for Expr.filter.CHILD
|
||
// remember that false/true cast respectively to 0/1
|
||
match[3] = +( match[3] ? match[4] + (match[5] || 1) : 2 * ( match[2] === "even" || match[2] === "odd" ) );
|
||
match[4] = +( ( match[6] + match[7] ) || match[2] === "odd" );
|
||
|
||
// other types prohibit arguments
|
||
} else if ( match[2] ) {
|
||
Sizzle.error( match[0] );
|
||
}
|
||
|
||
return match;
|
||
},
|
||
|
||
"PSEUDO": function( match ) {
|
||
var unquoted, excess;
|
||
if ( matchExpr["CHILD"].test( match[0] ) ) {
|
||
return null;
|
||
}
|
||
|
||
if ( match[3] ) {
|
||
match[2] = match[3];
|
||
} else if ( (unquoted = match[4]) ) {
|
||
// Only check arguments that contain a pseudo
|
||
if ( rpseudo.test(unquoted) &&
|
||
// Get excess from tokenize (recursively)
|
||
(excess = tokenize( unquoted, true )) &&
|
||
// advance to the next closing parenthesis
|
||
(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
|
||
|
||
// excess is a negative index
|
||
unquoted = unquoted.slice( 0, excess );
|
||
match[0] = match[0].slice( 0, excess );
|
||
}
|
||
match[2] = unquoted;
|
||
}
|
||
|
||
// Return only captures needed by the pseudo filter method (type and argument)
|
||
return match.slice( 0, 3 );
|
||
}
|
||
},
|
||
|
||
filter: {
|
||
"ID": assertGetIdNotName ?
|
||
function( id ) {
|
||
id = id.replace( rbackslash, "" );
|
||
return function( elem ) {
|
||
return elem.getAttribute("id") === id;
|
||
};
|
||
} :
|
||
function( id ) {
|
||
id = id.replace( rbackslash, "" );
|
||
return function( elem ) {
|
||
var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
|
||
return node && node.value === id;
|
||
};
|
||
},
|
||
|
||
"TAG": function( nodeName ) {
|
||
if ( nodeName === "*" ) {
|
||
return function() { return true; };
|
||
}
|
||
nodeName = nodeName.replace( rbackslash, "" ).toLowerCase();
|
||
|
||
return function( elem ) {
|
||
return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
|
||
};
|
||
},
|
||
|
||
"CLASS": function( className ) {
|
||
var pattern = classCache[ expando ][ className + " " ];
|
||
|
||
return pattern ||
|
||
(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
|
||
classCache( className, function( elem ) {
|
||
return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" );
|
||
});
|
||
},
|
||
|
||
"ATTR": function( name, operator, check ) {
|
||
return function( elem, context ) {
|
||
var result = Sizzle.attr( elem, name );
|
||
|
||
if ( result == null ) {
|
||
return operator === "!=";
|
||
}
|
||
if ( !operator ) {
|
||
return true;
|
||
}
|
||
|
||
result += "";
|
||
|
||
return operator === "=" ? result === check :
|
||
operator === "!=" ? result !== check :
|
||
operator === "^=" ? check && result.indexOf( check ) === 0 :
|
||
operator === "*=" ? check && result.indexOf( check ) > -1 :
|
||
operator === "$=" ? check && result.substr( result.length - check.length ) === check :
|
||
operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
|
||
operator === "|=" ? result === check || result.substr( 0, check.length + 1 ) === check + "-" :
|
||
false;
|
||
};
|
||
},
|
||
|
||
"CHILD": function( type, argument, first, last ) {
|
||
|
||
if ( type === "nth" ) {
|
||
return function( elem ) {
|
||
var node, diff,
|
||
parent = elem.parentNode;
|
||
|
||
if ( first === 1 && last === 0 ) {
|
||
return true;
|
||
}
|
||
|
||
if ( parent ) {
|
||
diff = 0;
|
||
for ( node = parent.firstChild; node; node = node.nextSibling ) {
|
||
if ( node.nodeType === 1 ) {
|
||
diff++;
|
||
if ( elem === node ) {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Incorporate the offset (or cast to NaN), then check against cycle size
|
||
diff -= last;
|
||
return diff === first || ( diff % first === 0 && diff / first >= 0 );
|
||
};
|
||
}
|
||
|
||
return function( elem ) {
|
||
var node = elem;
|
||
|
||
switch ( type ) {
|
||
case "only":
|
||
case "first":
|
||
while ( (node = node.previousSibling) ) {
|
||
if ( node.nodeType === 1 ) {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
if ( type === "first" ) {
|
||
return true;
|
||
}
|
||
|
||
node = elem;
|
||
|
||
/* falls through */
|
||
case "last":
|
||
while ( (node = node.nextSibling) ) {
|
||
if ( node.nodeType === 1 ) {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
return true;
|
||
}
|
||
};
|
||
},
|
||
|
||
"PSEUDO": function( pseudo, argument ) {
|
||
// pseudo-class names are case-insensitive
|
||
// http://www.w3.org/TR/selectors/#pseudo-classes
|
||
// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
|
||
// Remember that setFilters inherits from pseudos
|
||
var args,
|
||
fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
|
||
Sizzle.error( "unsupported pseudo: " + pseudo );
|
||
|
||
// The user may use createPseudo to indicate that
|
||
// arguments are needed to create the filter function
|
||
// just as Sizzle does
|
||
if ( fn[ expando ] ) {
|
||
return fn( argument );
|
||
}
|
||
|
||
// But maintain support for old signatures
|
||
if ( fn.length > 1 ) {
|
||
args = [ pseudo, pseudo, "", argument ];
|
||
return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
|
||
markFunction(function( seed, matches ) {
|
||
var idx,
|
||
matched = fn( seed, argument ),
|
||
i = matched.length;
|
||
while ( i-- ) {
|
||
idx = indexOf.call( seed, matched[i] );
|
||
seed[ idx ] = !( matches[ idx ] = matched[i] );
|
||
}
|
||
}) :
|
||
function( elem ) {
|
||
return fn( elem, 0, args );
|
||
};
|
||
}
|
||
|
||
return fn;
|
||
}
|
||
},
|
||
|
||
pseudos: {
|
||
"not": markFunction(function( selector ) {
|
||
// Trim the selector passed to compile
|
||
// to avoid treating leading and trailing
|
||
// spaces as combinators
|
||
var input = [],
|
||
results = [],
|
||
matcher = compile( selector.replace( rtrim, "$1" ) );
|
||
|
||
return matcher[ expando ] ?
|
||
markFunction(function( seed, matches, context, xml ) {
|
||
var elem,
|
||
unmatched = matcher( seed, null, xml, [] ),
|
||
i = seed.length;
|
||
|
||
// Match elements unmatched by `matcher`
|
||
while ( i-- ) {
|
||
if ( (elem = unmatched[i]) ) {
|
||
seed[i] = !(matches[i] = elem);
|
||
}
|
||
}
|
||
}) :
|
||
function( elem, context, xml ) {
|
||
input[0] = elem;
|
||
matcher( input, null, xml, results );
|
||
return !results.pop();
|
||
};
|
||
}),
|
||
|
||
"has": markFunction(function( selector ) {
|
||
return function( elem ) {
|
||
return Sizzle( selector, elem ).length > 0;
|
||
};
|
||
}),
|
||
|
||
"contains": markFunction(function( text ) {
|
||
return function( elem ) {
|
||
return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
|
||
};
|
||
}),
|
||
|
||
"enabled": function( elem ) {
|
||
return elem.disabled === false;
|
||
},
|
||
|
||
"disabled": function( elem ) {
|
||
return elem.disabled === true;
|
||
},
|
||
|
||
"checked": function( elem ) {
|
||
// In CSS3, :checked should return both checked and selected elements
|
||
// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
|
||
var nodeName = elem.nodeName.toLowerCase();
|
||
return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
|
||
},
|
||
|
||
"selected": function( elem ) {
|
||
// Accessing this property makes selected-by-default
|
||
// options in Safari work properly
|
||
if ( elem.parentNode ) {
|
||
elem.parentNode.selectedIndex;
|
||
}
|
||
|
||
return elem.selected === true;
|
||
},
|
||
|
||
"parent": function( elem ) {
|
||
return !Expr.pseudos["empty"]( elem );
|
||
},
|
||
|
||
"empty": function( elem ) {
|
||
// http://www.w3.org/TR/selectors/#empty-pseudo
|
||
// :empty is only affected by element nodes and content nodes(including text(3), cdata(4)),
|
||
// not comment, processing instructions, or others
|
||
// Thanks to Diego Perini for the nodeName shortcut
|
||
// Greater than "@" means alpha characters (specifically not starting with "#" or "?")
|
||
var nodeType;
|
||
elem = elem.firstChild;
|
||
while ( elem ) {
|
||
if ( elem.nodeName > "@" || (nodeType = elem.nodeType) === 3 || nodeType === 4 ) {
|
||
return false;
|
||
}
|
||
elem = elem.nextSibling;
|
||
}
|
||
return true;
|
||
},
|
||
|
||
"header": function( elem ) {
|
||
return rheader.test( elem.nodeName );
|
||
},
|
||
|
||
"text": function( elem ) {
|
||
var type, attr;
|
||
// IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc)
|
||
// use getAttribute instead to test this case
|
||
return elem.nodeName.toLowerCase() === "input" &&
|
||
(type = elem.type) === "text" &&
|
||
( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === type );
|
||
},
|
||
|
||
// Input types
|
||
"radio": createInputPseudo("radio"),
|
||
"checkbox": createInputPseudo("checkbox"),
|
||
"file": createInputPseudo("file"),
|
||
"password": createInputPseudo("password"),
|
||
"image": createInputPseudo("image"),
|
||
|
||
"submit": createButtonPseudo("submit"),
|
||
"reset": createButtonPseudo("reset"),
|
||
|
||
"button": function( elem ) {
|
||
var name = elem.nodeName.toLowerCase();
|
||
return name === "input" && elem.type === "button" || name === "button";
|
||
},
|
||
|
||
"input": function( elem ) {
|
||
return rinputs.test( elem.nodeName );
|
||
},
|
||
|
||
"focus": function( elem ) {
|
||
var doc = elem.ownerDocument;
|
||
return elem === doc.activeElement && (!doc.hasFocus || doc.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
|
||
},
|
||
|
||
"active": function( elem ) {
|
||
return elem === elem.ownerDocument.activeElement;
|
||
},
|
||
|
||
// Positional types
|
||
"first": createPositionalPseudo(function() {
|
||
return [ 0 ];
|
||
}),
|
||
|
||
"last": createPositionalPseudo(function( matchIndexes, length ) {
|
||
return [ length - 1 ];
|
||
}),
|
||
|
||
"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
|
||
return [ argument < 0 ? argument + length : argument ];
|
||
}),
|
||
|
||
"even": createPositionalPseudo(function( matchIndexes, length ) {
|
||
for ( var i = 0; i < length; i += 2 ) {
|
||
matchIndexes.push( i );
|
||
}
|
||
return matchIndexes;
|
||
}),
|
||
|
||
"odd": createPositionalPseudo(function( matchIndexes, length ) {
|
||
for ( var i = 1; i < length; i += 2 ) {
|
||
matchIndexes.push( i );
|
||
}
|
||
return matchIndexes;
|
||
}),
|
||
|
||
"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
|
||
for ( var i = argument < 0 ? argument + length : argument; --i >= 0; ) {
|
||
matchIndexes.push( i );
|
||
}
|
||
return matchIndexes;
|
||
}),
|
||
|
||
"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
|
||
for ( var i = argument < 0 ? argument + length : argument; ++i < length; ) {
|
||
matchIndexes.push( i );
|
||
}
|
||
return matchIndexes;
|
||
})
|
||
}
|
||
};
|
||
|
||
function siblingCheck( a, b, ret ) {
|
||
if ( a === b ) {
|
||
return ret;
|
||
}
|
||
|
||
var cur = a.nextSibling;
|
||
|
||
while ( cur ) {
|
||
if ( cur === b ) {
|
||
return -1;
|
||
}
|
||
|
||
cur = cur.nextSibling;
|
||
}
|
||
|
||
return 1;
|
||
}
|
||
|
||
sortOrder = docElem.compareDocumentPosition ?
|
||
function( a, b ) {
|
||
if ( a === b ) {
|
||
hasDuplicate = true;
|
||
return 0;
|
||
}
|
||
|
||
return ( !a.compareDocumentPosition || !b.compareDocumentPosition ?
|
||
a.compareDocumentPosition :
|
||
a.compareDocumentPosition(b) & 4
|
||
) ? -1 : 1;
|
||
} :
|
||
function( a, b ) {
|
||
// The nodes are identical, we can exit early
|
||
if ( a === b ) {
|
||
hasDuplicate = true;
|
||
return 0;
|
||
|
||
// Fallback to using sourceIndex (in IE) if it's available on both nodes
|
||
} else if ( a.sourceIndex && b.sourceIndex ) {
|
||
return a.sourceIndex - b.sourceIndex;
|
||
}
|
||
|
||
var al, bl,
|
||
ap = [],
|
||
bp = [],
|
||
aup = a.parentNode,
|
||
bup = b.parentNode,
|
||
cur = aup;
|
||
|
||
// If the nodes are siblings (or identical) we can do a quick check
|
||
if ( aup === bup ) {
|
||
return siblingCheck( a, b );
|
||
|
||
// If no parents were found then the nodes are disconnected
|
||
} else if ( !aup ) {
|
||
return -1;
|
||
|
||
} else if ( !bup ) {
|
||
return 1;
|
||
}
|
||
|
||
// Otherwise they're somewhere else in the tree so we need
|
||
// to build up a full list of the parentNodes for comparison
|
||
while ( cur ) {
|
||
ap.unshift( cur );
|
||
cur = cur.parentNode;
|
||
}
|
||
|
||
cur = bup;
|
||
|
||
while ( cur ) {
|
||
bp.unshift( cur );
|
||
cur = cur.parentNode;
|
||
}
|
||
|
||
al = ap.length;
|
||
bl = bp.length;
|
||
|
||
// Start walking down the tree looking for a discrepancy
|
||
for ( var i = 0; i < al && i < bl; i++ ) {
|
||
if ( ap[i] !== bp[i] ) {
|
||
return siblingCheck( ap[i], bp[i] );
|
||
}
|
||
}
|
||
|
||
// We ended someplace up the tree so do a sibling check
|
||
return i === al ?
|
||
siblingCheck( a, bp[i], -1 ) :
|
||
siblingCheck( ap[i], b, 1 );
|
||
};
|
||
|
||
// Always assume the presence of duplicates if sort doesn't
|
||
// pass them to our comparison function (as in Google Chrome).
|
||
[0, 0].sort( sortOrder );
|
||
baseHasDuplicate = !hasDuplicate;
|
||
|
||
// Document sorting and removing duplicates
|
||
Sizzle.uniqueSort = function( results ) {
|
||
var elem,
|
||
duplicates = [],
|
||
i = 1,
|
||
j = 0;
|
||
|
||
hasDuplicate = baseHasDuplicate;
|
||
results.sort( sortOrder );
|
||
|
||
if ( hasDuplicate ) {
|
||
for ( ; (elem = results[i]); i++ ) {
|
||
if ( elem === results[ i - 1 ] ) {
|
||
j = duplicates.push( i );
|
||
}
|
||
}
|
||
while ( j-- ) {
|
||
results.splice( duplicates[ j ], 1 );
|
||
}
|
||
}
|
||
|
||
return results;
|
||
};
|
||
|
||
Sizzle.error = function( msg ) {
|
||
throw new Error( "Syntax error, unrecognized expression: " + msg );
|
||
};
|
||
|
||
function tokenize( selector, parseOnly ) {
|
||
var matched, match, tokens, type,
|
||
soFar, groups, preFilters,
|
||
cached = tokenCache[ expando ][ selector + " " ];
|
||
|
||
if ( cached ) {
|
||
return parseOnly ? 0 : cached.slice( 0 );
|
||
}
|
||
|
||
soFar = selector;
|
||
groups = [];
|
||
preFilters = Expr.preFilter;
|
||
|
||
while ( soFar ) {
|
||
|
||
// Comma and first run
|
||
if ( !matched || (match = rcomma.exec( soFar )) ) {
|
||
if ( match ) {
|
||
// Don't consume trailing commas as valid
|
||
soFar = soFar.slice( match[0].length ) || soFar;
|
||
}
|
||
groups.push( tokens = [] );
|
||
}
|
||
|
||
matched = false;
|
||
|
||
// Combinators
|
||
if ( (match = rcombinators.exec( soFar )) ) {
|
||
tokens.push( matched = new Token( match.shift() ) );
|
||
soFar = soFar.slice( matched.length );
|
||
|
||
// Cast descendant combinators to space
|
||
matched.type = match[0].replace( rtrim, " " );
|
||
}
|
||
|
||
// Filters
|
||
for ( type in Expr.filter ) {
|
||
if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
|
||
(match = preFilters[ type ]( match ))) ) {
|
||
|
||
tokens.push( matched = new Token( match.shift() ) );
|
||
soFar = soFar.slice( matched.length );
|
||
matched.type = type;
|
||
matched.matches = match;
|
||
}
|
||
}
|
||
|
||
if ( !matched ) {
|
||
break;
|
||
}
|
||
}
|
||
|
||
// Return the length of the invalid excess
|
||
// if we're just parsing
|
||
// Otherwise, throw an error or return tokens
|
||
return parseOnly ?
|
||
soFar.length :
|
||
soFar ?
|
||
Sizzle.error( selector ) :
|
||
// Cache the tokens
|
||
tokenCache( selector, groups ).slice( 0 );
|
||
}
|
||
|
||
function addCombinator( matcher, combinator, base ) {
|
||
var dir = combinator.dir,
|
||
checkNonElements = base && combinator.dir === "parentNode",
|
||
doneName = done++;
|
||
|
||
return combinator.first ?
|
||
// Check against closest ancestor/preceding element
|
||
function( elem, context, xml ) {
|
||
while ( (elem = elem[ dir ]) ) {
|
||
if ( checkNonElements || elem.nodeType === 1 ) {
|
||
return matcher( elem, context, xml );
|
||
}
|
||
}
|
||
} :
|
||
|
||
// Check against all ancestor/preceding elements
|
||
function( elem, context, xml ) {
|
||
// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
|
||
if ( !xml ) {
|
||
var cache,
|
||
dirkey = dirruns + " " + doneName + " ",
|
||
cachedkey = dirkey + cachedruns;
|
||
while ( (elem = elem[ dir ]) ) {
|
||
if ( checkNonElements || elem.nodeType === 1 ) {
|
||
if ( (cache = elem[ expando ]) === cachedkey ) {
|
||
return elem.sizset;
|
||
} else if ( typeof cache === "string" && cache.indexOf(dirkey) === 0 ) {
|
||
if ( elem.sizset ) {
|
||
return elem;
|
||
}
|
||
} else {
|
||
elem[ expando ] = cachedkey;
|
||
if ( matcher( elem, context, xml ) ) {
|
||
elem.sizset = true;
|
||
return elem;
|
||
}
|
||
elem.sizset = false;
|
||
}
|
||
}
|
||
}
|
||
} else {
|
||
while ( (elem = elem[ dir ]) ) {
|
||
if ( checkNonElements || elem.nodeType === 1 ) {
|
||
if ( matcher( elem, context, xml ) ) {
|
||
return elem;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
};
|
||
}
|
||
|
||
function elementMatcher( matchers ) {
|
||
return matchers.length > 1 ?
|
||
function( elem, context, xml ) {
|
||
var i = matchers.length;
|
||
while ( i-- ) {
|
||
if ( !matchers[i]( elem, context, xml ) ) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
} :
|
||
matchers[0];
|
||
}
|
||
|
||
function condense( unmatched, map, filter, context, xml ) {
|
||
var elem,
|
||
newUnmatched = [],
|
||
i = 0,
|
||
len = unmatched.length,
|
||
mapped = map != null;
|
||
|
||
for ( ; i < len; i++ ) {
|
||
if ( (elem = unmatched[i]) ) {
|
||
if ( !filter || filter( elem, context, xml ) ) {
|
||
newUnmatched.push( elem );
|
||
if ( mapped ) {
|
||
map.push( i );
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return newUnmatched;
|
||
}
|
||
|
||
function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
|
||
if ( postFilter && !postFilter[ expando ] ) {
|
||
postFilter = setMatcher( postFilter );
|
||
}
|
||
if ( postFinder && !postFinder[ expando ] ) {
|
||
postFinder = setMatcher( postFinder, postSelector );
|
||
}
|
||
return markFunction(function( seed, results, context, xml ) {
|
||
var temp, i, elem,
|
||
preMap = [],
|
||
postMap = [],
|
||
preexisting = results.length,
|
||
|
||
// Get initial elements from seed or context
|
||
elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
|
||
|
||
// Prefilter to get matcher input, preserving a map for seed-results synchronization
|
||
matcherIn = preFilter && ( seed || !selector ) ?
|
||
condense( elems, preMap, preFilter, context, xml ) :
|
||
elems,
|
||
|
||
matcherOut = matcher ?
|
||
// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
|
||
postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
|
||
|
||
// ...intermediate processing is necessary
|
||
[] :
|
||
|
||
// ...otherwise use results directly
|
||
results :
|
||
matcherIn;
|
||
|
||
// Find primary matches
|
||
if ( matcher ) {
|
||
matcher( matcherIn, matcherOut, context, xml );
|
||
}
|
||
|
||
// Apply postFilter
|
||
if ( postFilter ) {
|
||
temp = condense( matcherOut, postMap );
|
||
postFilter( temp, [], context, xml );
|
||
|
||
// Un-match failing elements by moving them back to matcherIn
|
||
i = temp.length;
|
||
while ( i-- ) {
|
||
if ( (elem = temp[i]) ) {
|
||
matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
|
||
}
|
||
}
|
||
}
|
||
|
||
if ( seed ) {
|
||
if ( postFinder || preFilter ) {
|
||
if ( postFinder ) {
|
||
// Get the final matcherOut by condensing this intermediate into postFinder contexts
|
||
temp = [];
|
||
i = matcherOut.length;
|
||
while ( i-- ) {
|
||
if ( (elem = matcherOut[i]) ) {
|
||
// Restore matcherIn since elem is not yet a final match
|
||
temp.push( (matcherIn[i] = elem) );
|
||
}
|
||
}
|
||
postFinder( null, (matcherOut = []), temp, xml );
|
||
}
|
||
|
||
// Move matched elements from seed to results to keep them synchronized
|
||
i = matcherOut.length;
|
||
while ( i-- ) {
|
||
if ( (elem = matcherOut[i]) &&
|
||
(temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
|
||
|
||
seed[temp] = !(results[temp] = elem);
|
||
}
|
||
}
|
||
}
|
||
|
||
// Add elements to results, through postFinder if defined
|
||
} else {
|
||
matcherOut = condense(
|
||
matcherOut === results ?
|
||
matcherOut.splice( preexisting, matcherOut.length ) :
|
||
matcherOut
|
||
);
|
||
if ( postFinder ) {
|
||
postFinder( null, results, matcherOut, xml );
|
||
} else {
|
||
push.apply( results, matcherOut );
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
function matcherFromTokens( tokens ) {
|
||
var checkContext, matcher, j,
|
||
len = tokens.length,
|
||
leadingRelative = Expr.relative[ tokens[0].type ],
|
||
implicitRelative = leadingRelative || Expr.relative[" "],
|
||
i = leadingRelative ? 1 : 0,
|
||
|
||
// The foundational matcher ensures that elements are reachable from top-level context(s)
|
||
matchContext = addCombinator( function( elem ) {
|
||
return elem === checkContext;
|
||
}, implicitRelative, true ),
|
||
matchAnyContext = addCombinator( function( elem ) {
|
||
return indexOf.call( checkContext, elem ) > -1;
|
||
}, implicitRelative, true ),
|
||
matchers = [ function( elem, context, xml ) {
|
||
return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
|
||
(checkContext = context).nodeType ?
|
||
matchContext( elem, context, xml ) :
|
||
matchAnyContext( elem, context, xml ) );
|
||
} ];
|
||
|
||
for ( ; i < len; i++ ) {
|
||
if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
|
||
matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];
|
||
} else {
|
||
matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
|
||
|
||
// Return special upon seeing a positional matcher
|
||
if ( matcher[ expando ] ) {
|
||
// Find the next relative operator (if any) for proper handling
|
||
j = ++i;
|
||
for ( ; j < len; j++ ) {
|
||
if ( Expr.relative[ tokens[j].type ] ) {
|
||
break;
|
||
}
|
||
}
|
||
return setMatcher(
|
||
i > 1 && elementMatcher( matchers ),
|
||
i > 1 && tokens.slice( 0, i - 1 ).join("").replace( rtrim, "$1" ),
|
||
matcher,
|
||
i < j && matcherFromTokens( tokens.slice( i, j ) ),
|
||
j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
|
||
j < len && tokens.join("")
|
||
);
|
||
}
|
||
matchers.push( matcher );
|
||
}
|
||
}
|
||
|
||
return elementMatcher( matchers );
|
||
}
|
||
|
||
function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
|
||
var bySet = setMatchers.length > 0,
|
||
byElement = elementMatchers.length > 0,
|
||
superMatcher = function( seed, context, xml, results, expandContext ) {
|
||
var elem, j, matcher,
|
||
setMatched = [],
|
||
matchedCount = 0,
|
||
i = "0",
|
||
unmatched = seed && [],
|
||
outermost = expandContext != null,
|
||
contextBackup = outermostContext,
|
||
// We must always have either seed elements or context
|
||
elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ),
|
||
// Nested matchers should use non-integer dirruns
|
||
dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.E);
|
||
|
||
if ( outermost ) {
|
||
outermostContext = context !== document && context;
|
||
cachedruns = superMatcher.el;
|
||
}
|
||
|
||
// Add elements passing elementMatchers directly to results
|
||
for ( ; (elem = elems[i]) != null; i++ ) {
|
||
if ( byElement && elem ) {
|
||
for ( j = 0; (matcher = elementMatchers[j]); j++ ) {
|
||
if ( matcher( elem, context, xml ) ) {
|
||
results.push( elem );
|
||
break;
|
||
}
|
||
}
|
||
if ( outermost ) {
|
||
dirruns = dirrunsUnique;
|
||
cachedruns = ++superMatcher.el;
|
||
}
|
||
}
|
||
|
||
// Track unmatched elements for set filters
|
||
if ( bySet ) {
|
||
// They will have gone through all possible matchers
|
||
if ( (elem = !matcher && elem) ) {
|
||
matchedCount--;
|
||
}
|
||
|
||
// Lengthen the array for every element, matched or not
|
||
if ( seed ) {
|
||
unmatched.push( elem );
|
||
}
|
||
}
|
||
}
|
||
|
||
// Apply set filters to unmatched elements
|
||
matchedCount += i;
|
||
if ( bySet && i !== matchedCount ) {
|
||
for ( j = 0; (matcher = setMatchers[j]); j++ ) {
|
||
matcher( unmatched, setMatched, context, xml );
|
||
}
|
||
|
||
if ( seed ) {
|
||
// Reintegrate element matches to eliminate the need for sorting
|
||
if ( matchedCount > 0 ) {
|
||
while ( i-- ) {
|
||
if ( !(unmatched[i] || setMatched[i]) ) {
|
||
setMatched[i] = pop.call( results );
|
||
}
|
||
}
|
||
}
|
||
|
||
// Discard index placeholder values to get only actual matches
|
||
setMatched = condense( setMatched );
|
||
}
|
||
|
||
// Add matches to results
|
||
push.apply( results, setMatched );
|
||
|
||
// Seedless set matches succeeding multiple successful matchers stipulate sorting
|
||
if ( outermost && !seed && setMatched.length > 0 &&
|
||
( matchedCount + setMatchers.length ) > 1 ) {
|
||
|
||
Sizzle.uniqueSort( results );
|
||
}
|
||
}
|
||
|
||
// Override manipulation of globals by nested matchers
|
||
if ( outermost ) {
|
||
dirruns = dirrunsUnique;
|
||
outermostContext = contextBackup;
|
||
}
|
||
|
||
return unmatched;
|
||
};
|
||
|
||
superMatcher.el = 0;
|
||
return bySet ?
|
||
markFunction( superMatcher ) :
|
||
superMatcher;
|
||
}
|
||
|
||
compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
|
||
var i,
|
||
setMatchers = [],
|
||
elementMatchers = [],
|
||
cached = compilerCache[ expando ][ selector + " " ];
|
||
|
||
if ( !cached ) {
|
||
// Generate a function of recursive functions that can be used to check each element
|
||
if ( !group ) {
|
||
group = tokenize( selector );
|
||
}
|
||
i = group.length;
|
||
while ( i-- ) {
|
||
cached = matcherFromTokens( group[i] );
|
||
if ( cached[ expando ] ) {
|
||
setMatchers.push( cached );
|
||
} else {
|
||
elementMatchers.push( cached );
|
||
}
|
||
}
|
||
|
||
// Cache the compiled function
|
||
cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
|
||
}
|
||
return cached;
|
||
};
|
||
|
||
function multipleContexts( selector, contexts, results ) {
|
||
var i = 0,
|
||
len = contexts.length;
|
||
for ( ; i < len; i++ ) {
|
||
Sizzle( selector, contexts[i], results );
|
||
}
|
||
return results;
|
||
}
|
||
|
||
function select( selector, context, results, seed, xml ) {
|
||
var i, tokens, token, type, find,
|
||
match = tokenize( selector ),
|
||
j = match.length;
|
||
|
||
if ( !seed ) {
|
||
// Try to minimize operations if there is only one group
|
||
if ( match.length === 1 ) {
|
||
|
||
// Take a shortcut and set the context if the root selector is an ID
|
||
tokens = match[0] = match[0].slice( 0 );
|
||
if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
|
||
context.nodeType === 9 && !xml &&
|
||
Expr.relative[ tokens[1].type ] ) {
|
||
|
||
context = Expr.find["ID"]( token.matches[0].replace( rbackslash, "" ), context, xml )[0];
|
||
if ( !context ) {
|
||
return results;
|
||
}
|
||
|
||
selector = selector.slice( tokens.shift().length );
|
||
}
|
||
|
||
// Fetch a seed set for right-to-left matching
|
||
for ( i = matchExpr["POS"].test( selector ) ? -1 : tokens.length - 1; i >= 0; i-- ) {
|
||
token = tokens[i];
|
||
|
||
// Abort if we hit a combinator
|
||
if ( Expr.relative[ (type = token.type) ] ) {
|
||
break;
|
||
}
|
||
if ( (find = Expr.find[ type ]) ) {
|
||
// Search, expanding context for leading sibling combinators
|
||
if ( (seed = find(
|
||
token.matches[0].replace( rbackslash, "" ),
|
||
rsibling.test( tokens[0].type ) && context.parentNode || context,
|
||
xml
|
||
)) ) {
|
||
|
||
// If seed is empty or no tokens remain, we can return early
|
||
tokens.splice( i, 1 );
|
||
selector = seed.length && tokens.join("");
|
||
if ( !selector ) {
|
||
push.apply( results, slice.call( seed, 0 ) );
|
||
return results;
|
||
}
|
||
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Compile and execute a filtering function
|
||
// Provide `match` to avoid retokenization if we modified the selector above
|
||
compile( selector, match )(
|
||
seed,
|
||
context,
|
||
xml,
|
||
results,
|
||
rsibling.test( selector )
|
||
);
|
||
return results;
|
||
}
|
||
|
||
if ( document.querySelectorAll ) {
|
||
(function() {
|
||
var disconnectedMatch,
|
||
oldSelect = select,
|
||
rescape = /'|\\/g,
|
||
rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,
|
||
|
||
// qSa(:focus) reports false when true (Chrome 21), no need to also add to buggyMatches since matches checks buggyQSA
|
||
// A support test would require too much code (would include document ready)
|
||
rbuggyQSA = [ ":focus" ],
|
||
|
||
// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
|
||
// A support test would require too much code (would include document ready)
|
||
// just skip matchesSelector for :active
|
||
rbuggyMatches = [ ":active" ],
|
||
matches = docElem.matchesSelector ||
|
||
docElem.mozMatchesSelector ||
|
||
docElem.webkitMatchesSelector ||
|
||
docElem.oMatchesSelector ||
|
||
docElem.msMatchesSelector;
|
||
|
||
// Build QSA regex
|
||
// Regex strategy adopted from Diego Perini
|
||
assert(function( div ) {
|
||
// Select is set to empty string on purpose
|
||
// This is to test IE's treatment of not explictly
|
||
// setting a boolean content attribute,
|
||
// since its presence should be enough
|
||
// http://bugs.jquery.com/ticket/12359
|
||
div.innerHTML = "<select><option selected=''></option></select>";
|
||
|
||
// IE8 - Some boolean attributes are not treated correctly
|
||
if ( !div.querySelectorAll("[selected]").length ) {
|
||
rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" );
|
||
}
|
||
|
||
// Webkit/Opera - :checked should return selected option elements
|
||
// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
|
||
// IE8 throws error here (do not put tests after this one)
|
||
if ( !div.querySelectorAll(":checked").length ) {
|
||
rbuggyQSA.push(":checked");
|
||
}
|
||
});
|
||
|
||
assert(function( div ) {
|
||
|
||
// Opera 10-12/IE9 - ^= $= *= and empty values
|
||
// Should not select anything
|
||
div.innerHTML = "<p test=''></p>";
|
||
if ( div.querySelectorAll("[test^='']").length ) {
|
||
rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" );
|
||
}
|
||
|
||
// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
|
||
// IE8 throws error here (do not put tests after this one)
|
||
div.innerHTML = "<input type='hidden'/>";
|
||
if ( !div.querySelectorAll(":enabled").length ) {
|
||
rbuggyQSA.push(":enabled", ":disabled");
|
||
}
|
||
});
|
||
|
||
// rbuggyQSA always contains :focus, so no need for a length check
|
||
rbuggyQSA = /* rbuggyQSA.length && */ new RegExp( rbuggyQSA.join("|") );
|
||
|
||
select = function( selector, context, results, seed, xml ) {
|
||
// Only use querySelectorAll when not filtering,
|
||
// when this is not xml,
|
||
// and when no QSA bugs apply
|
||
if ( !seed && !xml && !rbuggyQSA.test( selector ) ) {
|
||
var groups, i,
|
||
old = true,
|
||
nid = expando,
|
||
newContext = context,
|
||
newSelector = context.nodeType === 9 && selector;
|
||
|
||
// qSA works strangely on Element-rooted queries
|
||
// We can work around this by specifying an extra ID on the root
|
||
// and working up from there (Thanks to Andrew Dupont for the technique)
|
||
// IE 8 doesn't work on object elements
|
||
if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
|
||
groups = tokenize( selector );
|
||
|
||
if ( (old = context.getAttribute("id")) ) {
|
||
nid = old.replace( rescape, "\\$&" );
|
||
} else {
|
||
context.setAttribute( "id", nid );
|
||
}
|
||
nid = "[id='" + nid + "'] ";
|
||
|
||
i = groups.length;
|
||
while ( i-- ) {
|
||
groups[i] = nid + groups[i].join("");
|
||
}
|
||
newContext = rsibling.test( selector ) && context.parentNode || context;
|
||
newSelector = groups.join(",");
|
||
}
|
||
|
||
if ( newSelector ) {
|
||
try {
|
||
push.apply( results, slice.call( newContext.querySelectorAll(
|
||
newSelector
|
||
), 0 ) );
|
||
return results;
|
||
} catch(qsaError) {
|
||
} finally {
|
||
if ( !old ) {
|
||
context.removeAttribute("id");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return oldSelect( selector, context, results, seed, xml );
|
||
};
|
||
|
||
if ( matches ) {
|
||
assert(function( div ) {
|
||
// Check to see if it's possible to do matchesSelector
|
||
// on a disconnected node (IE 9)
|
||
disconnectedMatch = matches.call( div, "div" );
|
||
|
||
// This should fail with an exception
|
||
// Gecko does not error, returns false instead
|
||
try {
|
||
matches.call( div, "[test!='']:sizzle" );
|
||
rbuggyMatches.push( "!=", pseudos );
|
||
} catch ( e ) {}
|
||
});
|
||
|
||
// rbuggyMatches always contains :active and :focus, so no need for a length check
|
||
rbuggyMatches = /* rbuggyMatches.length && */ new RegExp( rbuggyMatches.join("|") );
|
||
|
||
Sizzle.matchesSelector = function( elem, expr ) {
|
||
// Make sure that attribute selectors are quoted
|
||
expr = expr.replace( rattributeQuotes, "='$1']" );
|
||
|
||
// rbuggyMatches always contains :active, so no need for an existence check
|
||
if ( !isXML( elem ) && !rbuggyMatches.test( expr ) && !rbuggyQSA.test( expr ) ) {
|
||
try {
|
||
var ret = matches.call( elem, expr );
|
||
|
||
// IE 9's matchesSelector returns false on disconnected nodes
|
||
if ( ret || disconnectedMatch ||
|
||
// As well, disconnected nodes are said to be in a document
|
||
// fragment in IE 9
|
||
elem.document && elem.document.nodeType !== 11 ) {
|
||
return ret;
|
||
}
|
||
} catch(e) {}
|
||
}
|
||
|
||
return Sizzle( expr, null, null, [ elem ] ).length > 0;
|
||
};
|
||
}
|
||
})();
|
||
}
|
||
|
||
// Deprecated
|
||
Expr.pseudos["nth"] = Expr.pseudos["eq"];
|
||
|
||
// Back-compat
|
||
function setFilters() {}
|
||
Expr.filters = setFilters.prototype = Expr.pseudos;
|
||
Expr.setFilters = new setFilters();
|
||
|
||
// Override sizzle attribute retrieval
|
||
Sizzle.attr = jQuery.attr;
|
||
jQuery.find = Sizzle;
|
||
jQuery.expr = Sizzle.selectors;
|
||
jQuery.expr[":"] = jQuery.expr.pseudos;
|
||
jQuery.unique = Sizzle.uniqueSort;
|
||
jQuery.text = Sizzle.getText;
|
||
jQuery.isXMLDoc = Sizzle.isXML;
|
||
jQuery.contains = Sizzle.contains;
|
||
|
||
|
||
})( window );
|
||
var runtil = /Until$/,
|
||
rparentsprev = /^(?:parents|prev(?:Until|All))/,
|
||
isSimple = /^.[^:#\[\.,]*$/,
|
||
rneedsContext = jQuery.expr.match.needsContext,
|
||
// methods guaranteed to produce a unique set when starting from a unique set
|
||
guaranteedUnique = {
|
||
children: true,
|
||
contents: true,
|
||
next: true,
|
||
prev: true
|
||
};
|
||
|
||
jQuery.fn.extend({
|
||
find: function( selector ) {
|
||
var i, l, length, n, r, ret,
|
||
self = this;
|
||
|
||
if ( typeof selector !== "string" ) {
|
||
return jQuery( selector ).filter(function() {
|
||
for ( i = 0, l = self.length; i < l; i++ ) {
|
||
if ( jQuery.contains( self[ i ], this ) ) {
|
||
return true;
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
ret = this.pushStack( "", "find", selector );
|
||
|
||
for ( i = 0, l = this.length; i < l; i++ ) {
|
||
length = ret.length;
|
||
jQuery.find( selector, this[i], ret );
|
||
|
||
if ( i > 0 ) {
|
||
// Make sure that the results are unique
|
||
for ( n = length; n < ret.length; n++ ) {
|
||
for ( r = 0; r < length; r++ ) {
|
||
if ( ret[r] === ret[n] ) {
|
||
ret.splice(n--, 1);
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return ret;
|
||
},
|
||
|
||
has: function( target ) {
|
||
var i,
|
||
targets = jQuery( target, this ),
|
||
len = targets.length;
|
||
|
||
return this.filter(function() {
|
||
for ( i = 0; i < len; i++ ) {
|
||
if ( jQuery.contains( this, targets[i] ) ) {
|
||
return true;
|
||
}
|
||
}
|
||
});
|
||
},
|
||
|
||
not: function( selector ) {
|
||
return this.pushStack( winnow(this, selector, false), "not", selector);
|
||
},
|
||
|
||
filter: function( selector ) {
|
||
return this.pushStack( winnow(this, selector, true), "filter", selector );
|
||
},
|
||
|
||
is: function( selector ) {
|
||
return !!selector && (
|
||
typeof selector === "string" ?
|
||
// If this is a positional/relative selector, check membership in the returned set
|
||
// so $("p:first").is("p:last") won't return true for a doc with two "p".
|
||
rneedsContext.test( selector ) ?
|
||
jQuery( selector, this.context ).index( this[0] ) >= 0 :
|
||
jQuery.filter( selector, this ).length > 0 :
|
||
this.filter( selector ).length > 0 );
|
||
},
|
||
|
||
closest: function( selectors, context ) {
|
||
var cur,
|
||
i = 0,
|
||
l = this.length,
|
||
ret = [],
|
||
pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
|
||
jQuery( selectors, context || this.context ) :
|
||
0;
|
||
|
||
for ( ; i < l; i++ ) {
|
||
cur = this[i];
|
||
|
||
while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) {
|
||
if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) {
|
||
ret.push( cur );
|
||
break;
|
||
}
|
||
cur = cur.parentNode;
|
||
}
|
||
}
|
||
|
||
ret = ret.length > 1 ? jQuery.unique( ret ) : ret;
|
||
|
||
return this.pushStack( ret, "closest", selectors );
|
||
},
|
||
|
||
// Determine the position of an element within
|
||
// the matched set of elements
|
||
index: function( elem ) {
|
||
|
||
// No argument, return index in parent
|
||
if ( !elem ) {
|
||
return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1;
|
||
}
|
||
|
||
// index in selector
|
||
if ( typeof elem === "string" ) {
|
||
return jQuery.inArray( this[0], jQuery( elem ) );
|
||
}
|
||
|
||
// Locate the position of the desired element
|
||
return jQuery.inArray(
|
||
// If it receives a jQuery object, the first element is used
|
||
elem.jquery ? elem[0] : elem, this );
|
||
},
|
||
|
||
add: function( selector, context ) {
|
||
var set = typeof selector === "string" ?
|
||
jQuery( selector, context ) :
|
||
jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),
|
||
all = jQuery.merge( this.get(), set );
|
||
|
||
return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?
|
||
all :
|
||
jQuery.unique( all ) );
|
||
},
|
||
|
||
addBack: function( selector ) {
|
||
return this.add( selector == null ?
|
||
this.prevObject : this.prevObject.filter(selector)
|
||
);
|
||
}
|
||
});
|
||
|
||
jQuery.fn.andSelf = jQuery.fn.addBack;
|
||
|
||
// A painfully simple check to see if an element is disconnected
|
||
// from a document (should be improved, where feasible).
|
||
function isDisconnected( node ) {
|
||
return !node || !node.parentNode || node.parentNode.nodeType === 11;
|
||
}
|
||
|
||
function sibling( cur, dir ) {
|
||
do {
|
||
cur = cur[ dir ];
|
||
} while ( cur && cur.nodeType !== 1 );
|
||
|
||
return cur;
|
||
}
|
||
|
||
jQuery.each({
|
||
parent: function( elem ) {
|
||
var parent = elem.parentNode;
|
||
return parent && parent.nodeType !== 11 ? parent : null;
|
||
},
|
||
parents: function( elem ) {
|
||
return jQuery.dir( elem, "parentNode" );
|
||
},
|
||
parentsUntil: function( elem, i, until ) {
|
||
return jQuery.dir( elem, "parentNode", until );
|
||
},
|
||
next: function( elem ) {
|
||
return sibling( elem, "nextSibling" );
|
||
},
|
||
prev: function( elem ) {
|
||
return sibling( elem, "previousSibling" );
|
||
},
|
||
nextAll: function( elem ) {
|
||
return jQuery.dir( elem, "nextSibling" );
|
||
},
|
||
prevAll: function( elem ) {
|
||
return jQuery.dir( elem, "previousSibling" );
|
||
},
|
||
nextUntil: function( elem, i, until ) {
|
||
return jQuery.dir( elem, "nextSibling", until );
|
||
},
|
||
prevUntil: function( elem, i, until ) {
|
||
return jQuery.dir( elem, "previousSibling", until );
|
||
},
|
||
siblings: function( elem ) {
|
||
return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
|
||
},
|
||
children: function( elem ) {
|
||
return jQuery.sibling( elem.firstChild );
|
||
},
|
||
contents: function( elem ) {
|
||
return jQuery.nodeName( elem, "iframe" ) ?
|
||
elem.contentDocument || elem.contentWindow.document :
|
||
jQuery.merge( [], elem.childNodes );
|
||
}
|
||
}, function( name, fn ) {
|
||
jQuery.fn[ name ] = function( until, selector ) {
|
||
var ret = jQuery.map( this, fn, until );
|
||
|
||
if ( !runtil.test( name ) ) {
|
||
selector = until;
|
||
}
|
||
|
||
if ( selector && typeof selector === "string" ) {
|
||
ret = jQuery.filter( selector, ret );
|
||
}
|
||
|
||
ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret;
|
||
|
||
if ( this.length > 1 && rparentsprev.test( name ) ) {
|
||
ret = ret.reverse();
|
||
}
|
||
|
||
return this.pushStack( ret, name, core_slice.call( arguments ).join(",") );
|
||
};
|
||
});
|
||
|
||
jQuery.extend({
|
||
filter: function( expr, elems, not ) {
|
||
if ( not ) {
|
||
expr = ":not(" + expr + ")";
|
||
}
|
||
|
||
return elems.length === 1 ?
|
||
jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] :
|
||
jQuery.find.matches(expr, elems);
|
||
},
|
||
|
||
dir: function( elem, dir, until ) {
|
||
var matched = [],
|
||
cur = elem[ dir ];
|
||
|
||
while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
|
||
if ( cur.nodeType === 1 ) {
|
||
matched.push( cur );
|
||
}
|
||
cur = cur[dir];
|
||
}
|
||
return matched;
|
||
},
|
||
|
||
sibling: function( n, elem ) {
|
||
var r = [];
|
||
|
||
for ( ; n; n = n.nextSibling ) {
|
||
if ( n.nodeType === 1 && n !== elem ) {
|
||
r.push( n );
|
||
}
|
||
}
|
||
|
||
return r;
|
||
}
|
||
});
|
||
|
||
// Implement the identical functionality for filter and not
|
||
function winnow( elements, qualifier, keep ) {
|
||
|
||
// Can't pass null or undefined to indexOf in Firefox 4
|
||
// Set to 0 to skip string check
|
||
qualifier = qualifier || 0;
|
||
|
||
if ( jQuery.isFunction( qualifier ) ) {
|
||
return jQuery.grep(elements, function( elem, i ) {
|
||
var retVal = !!qualifier.call( elem, i, elem );
|
||
return retVal === keep;
|
||
});
|
||
|
||
} else if ( qualifier.nodeType ) {
|
||
return jQuery.grep(elements, function( elem, i ) {
|
||
return ( elem === qualifier ) === keep;
|
||
});
|
||
|
||
} else if ( typeof qualifier === "string" ) {
|
||
var filtered = jQuery.grep(elements, function( elem ) {
|
||
return elem.nodeType === 1;
|
||
});
|
||
|
||
if ( isSimple.test( qualifier ) ) {
|
||
return jQuery.filter(qualifier, filtered, !keep);
|
||
} else {
|
||
qualifier = jQuery.filter( qualifier, filtered );
|
||
}
|
||
}
|
||
|
||
return jQuery.grep(elements, function( elem, i ) {
|
||
return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;
|
||
});
|
||
}
|
||
function createSafeFragment( document ) {
|
||
var list = nodeNames.split( "|" ),
|
||
safeFrag = document.createDocumentFragment();
|
||
|
||
if ( safeFrag.createElement ) {
|
||
while ( list.length ) {
|
||
safeFrag.createElement(
|
||
list.pop()
|
||
);
|
||
}
|
||
}
|
||
return safeFrag;
|
||
}
|
||
|
||
var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" +
|
||
"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
|
||
rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g,
|
||
rleadingWhitespace = /^\s+/,
|
||
rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
|
||
rtagName = /<([\w:]+)/,
|
||
rtbody = /<tbody/i,
|
||
rhtml = /<|&#?\w+;/,
|
||
rnoInnerhtml = /<(?:script|style|link)/i,
|
||
rnocache = /<(?:script|object|embed|option|style)/i,
|
||
rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"),
|
||
rcheckableType = /^(?:checkbox|radio)$/,
|
||
// checked="checked" or checked
|
||
rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
|
||
rscriptType = /\/(java|ecma)script/i,
|
||
rcleanScript = /^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,
|
||
wrapMap = {
|
||
option: [ 1, "<select multiple='multiple'>", "</select>" ],
|
||
legend: [ 1, "<fieldset>", "</fieldset>" ],
|
||
thead: [ 1, "<table>", "</table>" ],
|
||
tr: [ 2, "<table><tbody>", "</tbody></table>" ],
|
||
td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
|
||
col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ],
|
||
area: [ 1, "<map>", "</map>" ],
|
||
_default: [ 0, "", "" ]
|
||
},
|
||
safeFragment = createSafeFragment( document ),
|
||
fragmentDiv = safeFragment.appendChild( document.createElement("div") );
|
||
|
||
wrapMap.optgroup = wrapMap.option;
|
||
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
|
||
wrapMap.th = wrapMap.td;
|
||
|
||
// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,
|
||
// unless wrapped in a div with non-breaking characters in front of it.
|
||
if ( !jQuery.support.htmlSerialize ) {
|
||
wrapMap._default = [ 1, "X<div>", "</div>" ];
|
||
}
|
||
|
||
jQuery.fn.extend({
|
||
text: function( value ) {
|
||
return jQuery.access( this, function( value ) {
|
||
return value === undefined ?
|
||
jQuery.text( this ) :
|
||
this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );
|
||
}, null, value, arguments.length );
|
||
},
|
||
|
||
wrapAll: function( html ) {
|
||
if ( jQuery.isFunction( html ) ) {
|
||
return this.each(function(i) {
|
||
jQuery(this).wrapAll( html.call(this, i) );
|
||
});
|
||
}
|
||
|
||
if ( this[0] ) {
|
||
// The elements to wrap the target around
|
||
var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);
|
||
|
||
if ( this[0].parentNode ) {
|
||
wrap.insertBefore( this[0] );
|
||
}
|
||
|
||
wrap.map(function() {
|
||
var elem = this;
|
||
|
||
while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
|
||
elem = elem.firstChild;
|
||
}
|
||
|
||
return elem;
|
||
}).append( this );
|
||
}
|
||
|
||
return this;
|
||
},
|
||
|
||
wrapInner: function( html ) {
|
||
if ( jQuery.isFunction( html ) ) {
|
||
return this.each(function(i) {
|
||
jQuery(this).wrapInner( html.call(this, i) );
|
||
});
|
||
}
|
||
|
||
return this.each(function() {
|
||
var self = jQuery( this ),
|
||
contents = self.contents();
|
||
|
||
if ( contents.length ) {
|
||
contents.wrapAll( html );
|
||
|
||
} else {
|
||
self.append( html );
|
||
}
|
||
});
|
||
},
|
||
|
||
wrap: function( html ) {
|
||
var isFunction = jQuery.isFunction( html );
|
||
|
||
return this.each(function(i) {
|
||
jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
|
||
});
|
||
},
|
||
|
||
unwrap: function() {
|
||
return this.parent().each(function() {
|
||
if ( !jQuery.nodeName( this, "body" ) ) {
|
||
jQuery( this ).replaceWith( this.childNodes );
|
||
}
|
||
}).end();
|
||
},
|
||
|
||
append: function() {
|
||
return this.domManip(arguments, true, function( elem ) {
|
||
if ( this.nodeType === 1 || this.nodeType === 11 ) {
|
||
this.appendChild( elem );
|
||
}
|
||
});
|
||
},
|
||
|
||
prepend: function() {
|
||
return this.domManip(arguments, true, function( elem ) {
|
||
if ( this.nodeType === 1 || this.nodeType === 11 ) {
|
||
this.insertBefore( elem, this.firstChild );
|
||
}
|
||
});
|
||
},
|
||
|
||
before: function() {
|
||
if ( !isDisconnected( this[0] ) ) {
|
||
return this.domManip(arguments, false, function( elem ) {
|
||
this.parentNode.insertBefore( elem, this );
|
||
});
|
||
}
|
||
|
||
if ( arguments.length ) {
|
||
var set = jQuery.clean( arguments );
|
||
return this.pushStack( jQuery.merge( set, this ), "before", this.selector );
|
||
}
|
||
},
|
||
|
||
after: function() {
|
||
if ( !isDisconnected( this[0] ) ) {
|
||
return this.domManip(arguments, false, function( elem ) {
|
||
this.parentNode.insertBefore( elem, this.nextSibling );
|
||
});
|
||
}
|
||
|
||
if ( arguments.length ) {
|
||
var set = jQuery.clean( arguments );
|
||
return this.pushStack( jQuery.merge( this, set ), "after", this.selector );
|
||
}
|
||
},
|
||
|
||
// keepData is for internal use only--do not document
|
||
remove: function( selector, keepData ) {
|
||
var elem,
|
||
i = 0;
|
||
|
||
for ( ; (elem = this[i]) != null; i++ ) {
|
||
if ( !selector || jQuery.filter( selector, [ elem ] ).length ) {
|
||
if ( !keepData && elem.nodeType === 1 ) {
|
||
jQuery.cleanData( elem.getElementsByTagName("*") );
|
||
jQuery.cleanData( [ elem ] );
|
||
}
|
||
|
||
if ( elem.parentNode ) {
|
||
elem.parentNode.removeChild( elem );
|
||
}
|
||
}
|
||
}
|
||
|
||
return this;
|
||
},
|
||
|
||
empty: function() {
|
||
var elem,
|
||
i = 0;
|
||
|
||
for ( ; (elem = this[i]) != null; i++ ) {
|
||
// Remove element nodes and prevent memory leaks
|
||
if ( elem.nodeType === 1 ) {
|
||
jQuery.cleanData( elem.getElementsByTagName("*") );
|
||
}
|
||
|
||
// Remove any remaining nodes
|
||
while ( elem.firstChild ) {
|
||
elem.removeChild( elem.firstChild );
|
||
}
|
||
}
|
||
|
||
return this;
|
||
},
|
||
|
||
clone: function( dataAndEvents, deepDataAndEvents ) {
|
||
dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
|
||
deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
|
||
|
||
return this.map( function () {
|
||
return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
|
||
});
|
||
},
|
||
|
||
html: function( value ) {
|
||
return jQuery.access( this, function( value ) {
|
||
var elem = this[0] || {},
|
||
i = 0,
|
||
l = this.length;
|
||
|
||
if ( value === undefined ) {
|
||
return elem.nodeType === 1 ?
|
||
elem.innerHTML.replace( rinlinejQuery, "" ) :
|
||
undefined;
|
||
}
|
||
|
||
// See if we can take a shortcut and just use innerHTML
|
||
if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
|
||
( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) &&
|
||
( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&
|
||
!wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) {
|
||
|
||
value = value.replace( rxhtmlTag, "<$1></$2>" );
|
||
|
||
try {
|
||
for (; i < l; i++ ) {
|
||
// Remove element nodes and prevent memory leaks
|
||
elem = this[i] || {};
|
||
if ( elem.nodeType === 1 ) {
|
||
jQuery.cleanData( elem.getElementsByTagName( "*" ) );
|
||
elem.innerHTML = value;
|
||
}
|
||
}
|
||
|
||
elem = 0;
|
||
|
||
// If using innerHTML throws an exception, use the fallback method
|
||
} catch(e) {}
|
||
}
|
||
|
||
if ( elem ) {
|
||
this.empty().append( value );
|
||
}
|
||
}, null, value, arguments.length );
|
||
},
|
||
|
||
replaceWith: function( value ) {
|
||
if ( !isDisconnected( this[0] ) ) {
|
||
// Make sure that the elements are removed from the DOM before they are inserted
|
||
// this can help fix replacing a parent with child elements
|
||
if ( jQuery.isFunction( value ) ) {
|
||
return this.each(function(i) {
|
||
var self = jQuery(this), old = self.html();
|
||
self.replaceWith( value.call( this, i, old ) );
|
||
});
|
||
}
|
||
|
||
if ( typeof value !== "string" ) {
|
||
value = jQuery( value ).detach();
|
||
}
|
||
|
||
return this.each(function() {
|
||
var next = this.nextSibling,
|
||
parent = this.parentNode;
|
||
|
||
jQuery( this ).remove();
|
||
|
||
if ( next ) {
|
||
jQuery(next).before( value );
|
||
} else {
|
||
jQuery(parent).append( value );
|
||
}
|
||
});
|
||
}
|
||
|
||
return this.length ?
|
||
this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value ) :
|
||
this;
|
||
},
|
||
|
||
detach: function( selector ) {
|
||
return this.remove( selector, true );
|
||
},
|
||
|
||
domManip: function( args, table, callback ) {
|
||
|
||
// Flatten any nested arrays
|
||
args = [].concat.apply( [], args );
|
||
|
||
var results, first, fragment, iNoClone,
|
||
i = 0,
|
||
value = args[0],
|
||
scripts = [],
|
||
l = this.length;
|
||
|
||
// We can't cloneNode fragments that contain checked, in WebKit
|
||
if ( !jQuery.support.checkClone && l > 1 && typeof value === "string" && rchecked.test( value ) ) {
|
||
return this.each(function() {
|
||
jQuery(this).domManip( args, table, callback );
|
||
});
|
||
}
|
||
|
||
if ( jQuery.isFunction(value) ) {
|
||
return this.each(function(i) {
|
||
var self = jQuery(this);
|
||
args[0] = value.call( this, i, table ? self.html() : undefined );
|
||
self.domManip( args, table, callback );
|
||
});
|
||
}
|
||
|
||
if ( this[0] ) {
|
||
results = jQuery.buildFragment( args, this, scripts );
|
||
fragment = results.fragment;
|
||
first = fragment.firstChild;
|
||
|
||
if ( fragment.childNodes.length === 1 ) {
|
||
fragment = first;
|
||
}
|
||
|
||
if ( first ) {
|
||
table = table && jQuery.nodeName( first, "tr" );
|
||
|
||
// Use the original fragment for the last item instead of the first because it can end up
|
||
// being emptied incorrectly in certain situations (#8070).
|
||
// Fragments from the fragment cache must always be cloned and never used in place.
|
||
for ( iNoClone = results.cacheable || l - 1; i < l; i++ ) {
|
||
callback.call(
|
||
table && jQuery.nodeName( this[i], "table" ) ?
|
||
findOrAppend( this[i], "tbody" ) :
|
||
this[i],
|
||
i === iNoClone ?
|
||
fragment :
|
||
jQuery.clone( fragment, true, true )
|
||
);
|
||
}
|
||
}
|
||
|
||
// Fix #11809: Avoid leaking memory
|
||
fragment = first = null;
|
||
|
||
if ( scripts.length ) {
|
||
jQuery.each( scripts, function( i, elem ) {
|
||
if ( elem.src ) {
|
||
if ( jQuery.ajax ) {
|
||
jQuery.ajax({
|
||
url: elem.src,
|
||
type: "GET",
|
||
dataType: "script",
|
||
async: false,
|
||
global: false,
|
||
"throws": true
|
||
});
|
||
} else {
|
||
jQuery.error("no ajax");
|
||
}
|
||
} else {
|
||
jQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || "" ).replace( rcleanScript, "" ) );
|
||
}
|
||
|
||
if ( elem.parentNode ) {
|
||
elem.parentNode.removeChild( elem );
|
||
}
|
||
});
|
||
}
|
||
}
|
||
|
||
return this;
|
||
}
|
||
});
|
||
|
||
function findOrAppend( elem, tag ) {
|
||
return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) );
|
||
}
|
||
|
||
function cloneCopyEvent( src, dest ) {
|
||
|
||
if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {
|
||
return;
|
||
}
|
||
|
||
var type, i, l,
|
||
oldData = jQuery._data( src ),
|
||
curData = jQuery._data( dest, oldData ),
|
||
events = oldData.events;
|
||
|
||
if ( events ) {
|
||
delete curData.handle;
|
||
curData.events = {};
|
||
|
||
for ( type in events ) {
|
||
for ( i = 0, l = events[ type ].length; i < l; i++ ) {
|
||
jQuery.event.add( dest, type, events[ type ][ i ] );
|
||
}
|
||
}
|
||
}
|
||
|
||
// make the cloned public data object a copy from the original
|
||
if ( curData.data ) {
|
||
curData.data = jQuery.extend( {}, curData.data );
|
||
}
|
||
}
|
||
|
||
function cloneFixAttributes( src, dest ) {
|
||
var nodeName;
|
||
|
||
// We do not need to do anything for non-Elements
|
||
if ( dest.nodeType !== 1 ) {
|
||
return;
|
||
}
|
||
|
||
// clearAttributes removes the attributes, which we don't want,
|
||
// but also removes the attachEvent events, which we *do* want
|
||
if ( dest.clearAttributes ) {
|
||
dest.clearAttributes();
|
||
}
|
||
|
||
// mergeAttributes, in contrast, only merges back on the
|
||
// original attributes, not the events
|
||
if ( dest.mergeAttributes ) {
|
||
dest.mergeAttributes( src );
|
||
}
|
||
|
||
nodeName = dest.nodeName.toLowerCase();
|
||
|
||
if ( nodeName === "object" ) {
|
||
// IE6-10 improperly clones children of object elements using classid.
|
||
// IE10 throws NoModificationAllowedError if parent is null, #12132.
|
||
if ( dest.parentNode ) {
|
||
dest.outerHTML = src.outerHTML;
|
||
}
|
||
|
||
// This path appears unavoidable for IE9. When cloning an object
|
||
// element in IE9, the outerHTML strategy above is not sufficient.
|
||
// If the src has innerHTML and the destination does not,
|
||
// copy the src.innerHTML into the dest.innerHTML. #10324
|
||
if ( jQuery.support.html5Clone && (src.innerHTML && !jQuery.trim(dest.innerHTML)) ) {
|
||
dest.innerHTML = src.innerHTML;
|
||
}
|
||
|
||
} else if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
|
||
// IE6-8 fails to persist the checked state of a cloned checkbox
|
||
// or radio button. Worse, IE6-7 fail to give the cloned element
|
||
// a checked appearance if the defaultChecked value isn't also set
|
||
|
||
dest.defaultChecked = dest.checked = src.checked;
|
||
|
||
// IE6-7 get confused and end up setting the value of a cloned
|
||
// checkbox/radio button to an empty string instead of "on"
|
||
if ( dest.value !== src.value ) {
|
||
dest.value = src.value;
|
||
}
|
||
|
||
// IE6-8 fails to return the selected option to the default selected
|
||
// state when cloning options
|
||
} else if ( nodeName === "option" ) {
|
||
dest.selected = src.defaultSelected;
|
||
|
||
// IE6-8 fails to set the defaultValue to the correct value when
|
||
// cloning other types of input fields
|
||
} else if ( nodeName === "input" || nodeName === "textarea" ) {
|
||
dest.defaultValue = src.defaultValue;
|
||
|
||
// IE blanks contents when cloning scripts
|
||
} else if ( nodeName === "script" && dest.text !== src.text ) {
|
||
dest.text = src.text;
|
||
}
|
||
|
||
// Event data gets referenced instead of copied if the expando
|
||
// gets copied too
|
||
dest.removeAttribute( jQuery.expando );
|
||
}
|
||
|
||
jQuery.buildFragment = function( args, context, scripts ) {
|
||
var fragment, cacheable, cachehit,
|
||
first = args[ 0 ];
|
||
|
||
// Set context from what may come in as undefined or a jQuery collection or a node
|
||
// Updated to fix #12266 where accessing context[0] could throw an exception in IE9/10 &
|
||
// also doubles as fix for #8950 where plain objects caused createDocumentFragment exception
|
||
context = context || document;
|
||
context = !context.nodeType && context[0] || context;
|
||
context = context.ownerDocument || context;
|
||
|
||
// Only cache "small" (1/2 KB) HTML strings that are associated with the main document
|
||
// Cloning options loses the selected state, so don't cache them
|
||
// IE 6 doesn't like it when you put <object> or <embed> elements in a fragment
|
||
// Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache
|
||
// Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501
|
||
if ( args.length === 1 && typeof first === "string" && first.length < 512 && context === document &&
|
||
first.charAt(0) === "<" && !rnocache.test( first ) &&
|
||
(jQuery.support.checkClone || !rchecked.test( first )) &&
|
||
(jQuery.support.html5Clone || !rnoshimcache.test( first )) ) {
|
||
|
||
// Mark cacheable and look for a hit
|
||
cacheable = true;
|
||
fragment = jQuery.fragments[ first ];
|
||
cachehit = fragment !== undefined;
|
||
}
|
||
|
||
if ( !fragment ) {
|
||
fragment = context.createDocumentFragment();
|
||
jQuery.clean( args, context, fragment, scripts );
|
||
|
||
// Update the cache, but only store false
|
||
// unless this is a second parsing of the same content
|
||
if ( cacheable ) {
|
||
jQuery.fragments[ first ] = cachehit && fragment;
|
||
}
|
||
}
|
||
|
||
return { fragment: fragment, cacheable: cacheable };
|
||
};
|
||
|
||
jQuery.fragments = {};
|
||
|
||
jQuery.each({
|
||
appendTo: "append",
|
||
prependTo: "prepend",
|
||
insertBefore: "before",
|
||
insertAfter: "after",
|
||
replaceAll: "replaceWith"
|
||
}, function( name, original ) {
|
||
jQuery.fn[ name ] = function( selector ) {
|
||
var elems,
|
||
i = 0,
|
||
ret = [],
|
||
insert = jQuery( selector ),
|
||
l = insert.length,
|
||
parent = this.length === 1 && this[0].parentNode;
|
||
|
||
if ( (parent == null || parent && parent.nodeType === 11 && parent.childNodes.length === 1) && l === 1 ) {
|
||
insert[ original ]( this[0] );
|
||
return this;
|
||
} else {
|
||
for ( ; i < l; i++ ) {
|
||
elems = ( i > 0 ? this.clone(true) : this ).get();
|
||
jQuery( insert[i] )[ original ]( elems );
|
||
ret = ret.concat( elems );
|
||
}
|
||
|
||
return this.pushStack( ret, name, insert.selector );
|
||
}
|
||
};
|
||
});
|
||
|
||
function getAll( elem ) {
|
||
if ( typeof elem.getElementsByTagName !== "undefined" ) {
|
||
return elem.getElementsByTagName( "*" );
|
||
|
||
} else if ( typeof elem.querySelectorAll !== "undefined" ) {
|
||
return elem.querySelectorAll( "*" );
|
||
|
||
} else {
|
||
return [];
|
||
}
|
||
}
|
||
|
||
// Used in clean, fixes the defaultChecked property
|
||
function fixDefaultChecked( elem ) {
|
||
if ( rcheckableType.test( elem.type ) ) {
|
||
elem.defaultChecked = elem.checked;
|
||
}
|
||
}
|
||
|
||
jQuery.extend({
|
||
clone: function( elem, dataAndEvents, deepDataAndEvents ) {
|
||
var srcElements,
|
||
destElements,
|
||
i,
|
||
clone;
|
||
|
||
if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) {
|
||
clone = elem.cloneNode( true );
|
||
|
||
// IE<=8 does not properly clone detached, unknown element nodes
|
||
} else {
|
||
fragmentDiv.innerHTML = elem.outerHTML;
|
||
fragmentDiv.removeChild( clone = fragmentDiv.firstChild );
|
||
}
|
||
|
||
if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) &&
|
||
(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {
|
||
// IE copies events bound via attachEvent when using cloneNode.
|
||
// Calling detachEvent on the clone will also remove the events
|
||
// from the original. In order to get around this, we use some
|
||
// proprietary methods to clear the events. Thanks to MooTools
|
||
// guys for this hotness.
|
||
|
||
cloneFixAttributes( elem, clone );
|
||
|
||
// Using Sizzle here is crazy slow, so we use getElementsByTagName instead
|
||
srcElements = getAll( elem );
|
||
destElements = getAll( clone );
|
||
|
||
// Weird iteration because IE will replace the length property
|
||
// with an element if you are cloning the body and one of the
|
||
// elements on the page has a name or id of "length"
|
||
for ( i = 0; srcElements[i]; ++i ) {
|
||
// Ensure that the destination node is not null; Fixes #9587
|
||
if ( destElements[i] ) {
|
||
cloneFixAttributes( srcElements[i], destElements[i] );
|
||
}
|
||
}
|
||
}
|
||
|
||
// Copy the events from the original to the clone
|
||
if ( dataAndEvents ) {
|
||
cloneCopyEvent( elem, clone );
|
||
|
||
if ( deepDataAndEvents ) {
|
||
srcElements = getAll( elem );
|
||
destElements = getAll( clone );
|
||
|
||
for ( i = 0; srcElements[i]; ++i ) {
|
||
cloneCopyEvent( srcElements[i], destElements[i] );
|
||
}
|
||
}
|
||
}
|
||
|
||
srcElements = destElements = null;
|
||
|
||
// Return the cloned set
|
||
return clone;
|
||
},
|
||
|
||
clean: function( elems, context, fragment, scripts ) {
|
||
var i, j, elem, tag, wrap, depth, div, hasBody, tbody, len, handleScript, jsTags,
|
||
safe = context === document && safeFragment,
|
||
ret = [];
|
||
|
||
// Ensure that context is a document
|
||
if ( !context || typeof context.createDocumentFragment === "undefined" ) {
|
||
context = document;
|
||
}
|
||
|
||
// Use the already-created safe fragment if context permits
|
||
for ( i = 0; (elem = elems[i]) != null; i++ ) {
|
||
if ( typeof elem === "number" ) {
|
||
elem += "";
|
||
}
|
||
|
||
if ( !elem ) {
|
||
continue;
|
||
}
|
||
|
||
// Convert html string into DOM nodes
|
||
if ( typeof elem === "string" ) {
|
||
if ( !rhtml.test( elem ) ) {
|
||
elem = context.createTextNode( elem );
|
||
} else {
|
||
// Ensure a safe container in which to render the html
|
||
safe = safe || createSafeFragment( context );
|
||
div = context.createElement("div");
|
||
safe.appendChild( div );
|
||
|
||
// Fix "XHTML"-style tags in all browsers
|
||
elem = elem.replace(rxhtmlTag, "<$1></$2>");
|
||
|
||
// Go to html and back, then peel off extra wrappers
|
||
tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase();
|
||
wrap = wrapMap[ tag ] || wrapMap._default;
|
||
depth = wrap[0];
|
||
div.innerHTML = wrap[1] + elem + wrap[2];
|
||
|
||
// Move to the right depth
|
||
while ( depth-- ) {
|
||
div = div.lastChild;
|
||
}
|
||
|
||
// Remove IE's autoinserted <tbody> from table fragments
|
||
if ( !jQuery.support.tbody ) {
|
||
|
||
// String was a <table>, *may* have spurious <tbody>
|
||
hasBody = rtbody.test(elem);
|
||
tbody = tag === "table" && !hasBody ?
|
||
div.firstChild && div.firstChild.childNodes :
|
||
|
||
// String was a bare <thead> or <tfoot>
|
||
wrap[1] === "<table>" && !hasBody ?
|
||
div.childNodes :
|
||
[];
|
||
|
||
for ( j = tbody.length - 1; j >= 0 ; --j ) {
|
||
if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) {
|
||
tbody[ j ].parentNode.removeChild( tbody[ j ] );
|
||
}
|
||
}
|
||
}
|
||
|
||
// IE completely kills leading whitespace when innerHTML is used
|
||
if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
|
||
div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );
|
||
}
|
||
|
||
elem = div.childNodes;
|
||
|
||
// Take out of fragment container (we need a fresh div each time)
|
||
div.parentNode.removeChild( div );
|
||
}
|
||
}
|
||
|
||
if ( elem.nodeType ) {
|
||
ret.push( elem );
|
||
} else {
|
||
jQuery.merge( ret, elem );
|
||
}
|
||
}
|
||
|
||
// Fix #11356: Clear elements from safeFragment
|
||
if ( div ) {
|
||
elem = div = safe = null;
|
||
}
|
||
|
||
// Reset defaultChecked for any radios and checkboxes
|
||
// about to be appended to the DOM in IE 6/7 (#8060)
|
||
if ( !jQuery.support.appendChecked ) {
|
||
for ( i = 0; (elem = ret[i]) != null; i++ ) {
|
||
if ( jQuery.nodeName( elem, "input" ) ) {
|
||
fixDefaultChecked( elem );
|
||
} else if ( typeof elem.getElementsByTagName !== "undefined" ) {
|
||
jQuery.grep( elem.getElementsByTagName("input"), fixDefaultChecked );
|
||
}
|
||
}
|
||
}
|
||
|
||
// Append elements to a provided document fragment
|
||
if ( fragment ) {
|
||
// Special handling of each script element
|
||
handleScript = function( elem ) {
|
||
// Check if we consider it executable
|
||
if ( !elem.type || rscriptType.test( elem.type ) ) {
|
||
// Detach the script and store it in the scripts array (if provided) or the fragment
|
||
// Return truthy to indicate that it has been handled
|
||
return scripts ?
|
||
scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) :
|
||
fragment.appendChild( elem );
|
||
}
|
||
};
|
||
|
||
for ( i = 0; (elem = ret[i]) != null; i++ ) {
|
||
// Check if we're done after handling an executable script
|
||
if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) {
|
||
// Append to fragment and handle embedded scripts
|
||
fragment.appendChild( elem );
|
||
if ( typeof elem.getElementsByTagName !== "undefined" ) {
|
||
// handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration
|
||
jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript );
|
||
|
||
// Splice the scripts into ret after their former ancestor and advance our index beyond them
|
||
ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );
|
||
i += jsTags.length;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return ret;
|
||
},
|
||
|
||
cleanData: function( elems, /* internal */ acceptData ) {
|
||
var data, id, elem, type,
|
||
i = 0,
|
||
internalKey = jQuery.expando,
|
||
cache = jQuery.cache,
|
||
deleteExpando = jQuery.support.deleteExpando,
|
||
special = jQuery.event.special;
|
||
|
||
for ( ; (elem = elems[i]) != null; i++ ) {
|
||
|
||
if ( acceptData || jQuery.acceptData( elem ) ) {
|
||
|
||
id = elem[ internalKey ];
|
||
data = id && cache[ id ];
|
||
|
||
if ( data ) {
|
||
if ( data.events ) {
|
||
for ( type in data.events ) {
|
||
if ( special[ type ] ) {
|
||
jQuery.event.remove( elem, type );
|
||
|
||
// This is a shortcut to avoid jQuery.event.remove's overhead
|
||
} else {
|
||
jQuery.removeEvent( elem, type, data.handle );
|
||
}
|
||
}
|
||
}
|
||
|
||
// Remove cache only if it was not already removed by jQuery.event.remove
|
||
if ( cache[ id ] ) {
|
||
|
||
delete cache[ id ];
|
||
|
||
// IE does not allow us to delete expando properties from nodes,
|
||
// nor does it have a removeAttribute function on Document nodes;
|
||
// we must handle all of these cases
|
||
if ( deleteExpando ) {
|
||
delete elem[ internalKey ];
|
||
|
||
} else if ( elem.removeAttribute ) {
|
||
elem.removeAttribute( internalKey );
|
||
|
||
} else {
|
||
elem[ internalKey ] = null;
|
||
}
|
||
|
||
jQuery.deletedIds.push( id );
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
// Limit scope pollution from any deprecated API
|
||
(function() {
|
||
|
||
var matched, browser;
|
||
|
||
// Use of jQuery.browser is frowned upon.
|
||
// More details: http://api.jquery.com/jQuery.browser
|
||
// jQuery.uaMatch maintained for back-compat
|
||
jQuery.uaMatch = function( ua ) {
|
||
ua = ua.toLowerCase();
|
||
|
||
var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
|
||
/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
|
||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
|
||
/(msie) ([\w.]+)/.exec( ua ) ||
|
||
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
|
||
[];
|
||
|
||
return {
|
||
browser: match[ 1 ] || "",
|
||
version: match[ 2 ] || "0"
|
||
};
|
||
};
|
||
|
||
matched = jQuery.uaMatch( navigator.userAgent );
|
||
browser = {};
|
||
|
||
if ( matched.browser ) {
|
||
browser[ matched.browser ] = true;
|
||
browser.version = matched.version;
|
||
}
|
||
|
||
// Chrome is Webkit, but Webkit is also Safari.
|
||
if ( browser.chrome ) {
|
||
browser.webkit = true;
|
||
} else if ( browser.webkit ) {
|
||
browser.safari = true;
|
||
}
|
||
|
||
jQuery.browser = browser;
|
||
|
||
jQuery.sub = function() {
|
||
function jQuerySub( selector, context ) {
|
||
return new jQuerySub.fn.init( selector, context );
|
||
}
|
||
jQuery.extend( true, jQuerySub, this );
|
||
jQuerySub.superclass = this;
|
||
jQuerySub.fn = jQuerySub.prototype = this();
|
||
jQuerySub.fn.constructor = jQuerySub;
|
||
jQuerySub.sub = this.sub;
|
||
jQuerySub.fn.init = function init( selector, context ) {
|
||
if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {
|
||
context = jQuerySub( context );
|
||
}
|
||
|
||
return jQuery.fn.init.call( this, selector, context, rootjQuerySub );
|
||
};
|
||
jQuerySub.fn.init.prototype = jQuerySub.fn;
|
||
var rootjQuerySub = jQuerySub(document);
|
||
return jQuerySub;
|
||
};
|
||
|
||
})();
|
||
var curCSS, iframe, iframeDoc,
|
||
ralpha = /alpha\([^)]*\)/i,
|
||
ropacity = /opacity=([^)]*)/,
|
||
rposition = /^(top|right|bottom|left)$/,
|
||
// swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
|
||
// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
|
||
rdisplayswap = /^(none|table(?!-c[ea]).+)/,
|
||
rmargin = /^margin/,
|
||
rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ),
|
||
rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ),
|
||
rrelNum = new RegExp( "^([-+])=(" + core_pnum + ")", "i" ),
|
||
elemdisplay = { BODY: "block" },
|
||
|
||
cssShow = { position: "absolute", visibility: "hidden", display: "block" },
|
||
cssNormalTransform = {
|
||
letterSpacing: 0,
|
||
fontWeight: 400
|
||
},
|
||
|
||
cssExpand = [ "Top", "Right", "Bottom", "Left" ],
|
||
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ],
|
||
|
||
eventsToggle = jQuery.fn.toggle;
|
||
|
||
// return a css property mapped to a potentially vendor prefixed property
|
||
function vendorPropName( style, name ) {
|
||
|
||
// shortcut for names that are not vendor prefixed
|
||
if ( name in style ) {
|
||
return name;
|
||
}
|
||
|
||
// check for vendor prefixed names
|
||
var capName = name.charAt(0).toUpperCase() + name.slice(1),
|
||
origName = name,
|
||
i = cssPrefixes.length;
|
||
|
||
while ( i-- ) {
|
||
name = cssPrefixes[ i ] + capName;
|
||
if ( name in style ) {
|
||
return name;
|
||
}
|
||
}
|
||
|
||
return origName;
|
||
}
|
||
|
||
function isHidden( elem, el ) {
|
||
elem = el || elem;
|
||
return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
|
||
}
|
||
|
||
function showHide( elements, show ) {
|
||
var elem, display,
|
||
values = [],
|
||
index = 0,
|
||
length = elements.length;
|
||
|
||
for ( ; index < length; index++ ) {
|
||
elem = elements[ index ];
|
||
if ( !elem.style ) {
|
||
continue;
|
||
}
|
||
values[ index ] = jQuery._data( elem, "olddisplay" );
|
||
if ( show ) {
|
||
// Reset the inline display of this element to learn if it is
|
||
// being hidden by cascaded rules or not
|
||
if ( !values[ index ] && elem.style.display === "none" ) {
|
||
elem.style.display = "";
|
||
}
|
||
|
||
// Set elements which have been overridden with display: none
|
||
// in a stylesheet to whatever the default browser style is
|
||
// for such an element
|
||
if ( elem.style.display === "" && isHidden( elem ) ) {
|
||
values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) );
|
||
}
|
||
} else {
|
||
display = curCSS( elem, "display" );
|
||
|
||
if ( !values[ index ] && display !== "none" ) {
|
||
jQuery._data( elem, "olddisplay", display );
|
||
}
|
||
}
|
||
}
|
||
|
||
// Set the display of most of the elements in a second loop
|
||
// to avoid the constant reflow
|
||
for ( index = 0; index < length; index++ ) {
|
||
elem = elements[ index ];
|
||
if ( !elem.style ) {
|
||
continue;
|
||
}
|
||
if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
|
||
elem.style.display = show ? values[ index ] || "" : "none";
|
||
}
|
||
}
|
||
|
||
return elements;
|
||
}
|
||
|
||
jQuery.fn.extend({
|
||
css: function( name, value ) {
|
||
return jQuery.access( this, function( elem, name, value ) {
|
||
return value !== undefined ?
|
||
jQuery.style( elem, name, value ) :
|
||
jQuery.css( elem, name );
|
||
}, name, value, arguments.length > 1 );
|
||
},
|
||
show: function() {
|
||
return showHide( this, true );
|
||
},
|
||
hide: function() {
|
||
return showHide( this );
|
||
},
|
||
toggle: function( state, fn2 ) {
|
||
var bool = typeof state === "boolean";
|
||
|
||
if ( jQuery.isFunction( state ) && jQuery.isFunction( fn2 ) ) {
|
||
return eventsToggle.apply( this, arguments );
|
||
}
|
||
|
||
return this.each(function() {
|
||
if ( bool ? state : isHidden( this ) ) {
|
||
jQuery( this ).show();
|
||
} else {
|
||
jQuery( this ).hide();
|
||
}
|
||
});
|
||
}
|
||
});
|
||
|
||
jQuery.extend({
|
||
// Add in style property hooks for overriding the default
|
||
// behavior of getting and setting a style property
|
||
cssHooks: {
|
||
opacity: {
|
||
get: function( elem, computed ) {
|
||
if ( computed ) {
|
||
// We should always get a number back from opacity
|
||
var ret = curCSS( elem, "opacity" );
|
||
return ret === "" ? "1" : ret;
|
||
|
||
}
|
||
}
|
||
}
|
||
},
|
||
|
||
// Exclude the following css properties to add px
|
||
cssNumber: {
|
||
"fillOpacity": true,
|
||
"fontWeight": true,
|
||
"lineHeight": true,
|
||
"opacity": true,
|
||
"orphans": true,
|
||
"widows": true,
|
||
"zIndex": true,
|
||
"zoom": true
|
||
},
|
||
|
||
// Add in properties whose names you wish to fix before
|
||
// setting or getting the value
|
||
cssProps: {
|
||
// normalize float css property
|
||
"float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat"
|
||
},
|
||
|
||
// Get and set the style property on a DOM Node
|
||
style: function( elem, name, value, extra ) {
|
||
// Don't set styles on text and comment nodes
|
||
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
|
||
return;
|
||
}
|
||
|
||
// Make sure that we're working with the right name
|
||
var ret, type, hooks,
|
||
origName = jQuery.camelCase( name ),
|
||
style = elem.style;
|
||
|
||
name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
|
||
|
||
// gets hook for the prefixed version
|
||
// followed by the unprefixed version
|
||
hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
|
||
|
||
// Check if we're setting a value
|
||
if ( value !== undefined ) {
|
||
type = typeof value;
|
||
|
||
// convert relative number strings (+= or -=) to relative numbers. #7345
|
||
if ( type === "string" && (ret = rrelNum.exec( value )) ) {
|
||
value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
|
||
// Fixes bug #9237
|
||
type = "number";
|
||
}
|
||
|
||
// Make sure that NaN and null values aren't set. See: #7116
|
||
if ( value == null || type === "number" && isNaN( value ) ) {
|
||
return;
|
||
}
|
||
|
||
// If a number was passed in, add 'px' to the (except for certain CSS properties)
|
||
if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
|
||
value += "px";
|
||
}
|
||
|
||
// If a hook was provided, use that value, otherwise just set the specified value
|
||
if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
|
||
// Wrapped to prevent IE from throwing errors when 'invalid' values are provided
|
||
// Fixes bug #5509
|
||
try {
|
||
style[ name ] = value;
|
||
} catch(e) {}
|
||
}
|
||
|
||
} else {
|
||
// If a hook was provided get the non-computed value from there
|
||
if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
|
||
return ret;
|
||
}
|
||
|
||
// Otherwise just get the value from the style object
|
||
return style[ name ];
|
||
}
|
||
},
|
||
|
||
css: function( elem, name, numeric, extra ) {
|
||
var val, num, hooks,
|
||
origName = jQuery.camelCase( name );
|
||
|
||
// Make sure that we're working with the right name
|
||
name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
|
||
|
||
// gets hook for the prefixed version
|
||
// followed by the unprefixed version
|
||
hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
|
||
|
||
// If a hook was provided get the computed value from there
|
||
if ( hooks && "get" in hooks ) {
|
||
val = hooks.get( elem, true, extra );
|
||
}
|
||
|
||
// Otherwise, if a way to get the computed value exists, use that
|
||
if ( val === undefined ) {
|
||
val = curCSS( elem, name );
|
||
}
|
||
|
||
//convert "normal" to computed value
|
||
if ( val === "normal" && name in cssNormalTransform ) {
|
||
val = cssNormalTransform[ name ];
|
||
}
|
||
|
||
// Return, converting to number if forced or a qualifier was provided and val looks numeric
|
||
if ( numeric || extra !== undefined ) {
|
||
num = parseFloat( val );
|
||
return numeric || jQuery.isNumeric( num ) ? num || 0 : val;
|
||
}
|
||
return val;
|
||
},
|
||
|
||
// A method for quickly swapping in/out CSS properties to get correct calculations
|
||
swap: function( elem, options, callback ) {
|
||
var ret, name,
|
||
old = {};
|
||
|
||
// Remember the old values, and insert the new ones
|
||
for ( name in options ) {
|
||
old[ name ] = elem.style[ name ];
|
||
elem.style[ name ] = options[ name ];
|
||
}
|
||
|
||
ret = callback.call( elem );
|
||
|
||
// Revert the old values
|
||
for ( name in options ) {
|
||
elem.style[ name ] = old[ name ];
|
||
}
|
||
|
||
return ret;
|
||
}
|
||
});
|
||
|
||
// NOTE: To any future maintainer, we've window.getComputedStyle
|
||
// because jsdom on node.js will break without it.
|
||
if ( window.getComputedStyle ) {
|
||
curCSS = function( elem, name ) {
|
||
var ret, width, minWidth, maxWidth,
|
||
computed = window.getComputedStyle( elem, null ),
|
||
style = elem.style;
|
||
|
||
if ( computed ) {
|
||
|
||
// getPropertyValue is only needed for .css('filter') in IE9, see #12537
|
||
ret = computed.getPropertyValue( name ) || computed[ name ];
|
||
|
||
if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
|
||
ret = jQuery.style( elem, name );
|
||
}
|
||
|
||
// A tribute to the "awesome hack by Dean Edwards"
|
||
// Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right
|
||
// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
|
||
// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
|
||
if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
|
||
width = style.width;
|
||
minWidth = style.minWidth;
|
||
maxWidth = style.maxWidth;
|
||
|
||
style.minWidth = style.maxWidth = style.width = ret;
|
||
ret = computed.width;
|
||
|
||
style.width = width;
|
||
style.minWidth = minWidth;
|
||
style.maxWidth = maxWidth;
|
||
}
|
||
}
|
||
|
||
return ret;
|
||
};
|
||
} else if ( document.documentElement.currentStyle ) {
|
||
curCSS = function( elem, name ) {
|
||
var left, rsLeft,
|
||
ret = elem.currentStyle && elem.currentStyle[ name ],
|
||
style = elem.style;
|
||
|
||
// Avoid setting ret to empty string here
|
||
// so we don't default to auto
|
||
if ( ret == null && style && style[ name ] ) {
|
||
ret = style[ name ];
|
||
}
|
||
|
||
// From the awesome hack by Dean Edwards
|
||
// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
|
||
|
||
// If we're not dealing with a regular pixel number
|
||
// but a number that has a weird ending, we need to convert it to pixels
|
||
// but not position css attributes, as those are proportional to the parent element instead
|
||
// and we can't measure the parent instead because it might trigger a "stacking dolls" problem
|
||
if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {
|
||
|
||
// Remember the original values
|
||
left = style.left;
|
||
rsLeft = elem.runtimeStyle && elem.runtimeStyle.left;
|
||
|
||
// Put in the new values to get a computed value out
|
||
if ( rsLeft ) {
|
||
elem.runtimeStyle.left = elem.currentStyle.left;
|
||
}
|
||
style.left = name === "fontSize" ? "1em" : ret;
|
||
ret = style.pixelLeft + "px";
|
||
|
||
// Revert the changed values
|
||
style.left = left;
|
||
if ( rsLeft ) {
|
||
elem.runtimeStyle.left = rsLeft;
|
||
}
|
||
}
|
||
|
||
return ret === "" ? "auto" : ret;
|
||
};
|
||
}
|
||
|
||
function setPositiveNumber( elem, value, subtract ) {
|
||
var matches = rnumsplit.exec( value );
|
||
return matches ?
|
||
Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
|
||
value;
|
||
}
|
||
|
||
function augmentWidthOrHeight( elem, name, extra, isBorderBox ) {
|
||
var i = extra === ( isBorderBox ? "border" : "content" ) ?
|
||
// If we already have the right measurement, avoid augmentation
|
||
4 :
|
||
// Otherwise initialize for horizontal or vertical properties
|
||
name === "width" ? 1 : 0,
|
||
|
||
val = 0;
|
||
|
||
for ( ; i < 4; i += 2 ) {
|
||
// both box models exclude margin, so add it if we want it
|
||
if ( extra === "margin" ) {
|
||
// we use jQuery.css instead of curCSS here
|
||
// because of the reliableMarginRight CSS hook!
|
||
val += jQuery.css( elem, extra + cssExpand[ i ], true );
|
||
}
|
||
|
||
// From this point on we use curCSS for maximum performance (relevant in animations)
|
||
if ( isBorderBox ) {
|
||
// border-box includes padding, so remove it if we want content
|
||
if ( extra === "content" ) {
|
||
val -= parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0;
|
||
}
|
||
|
||
// at this point, extra isn't border nor margin, so remove border
|
||
if ( extra !== "margin" ) {
|
||
val -= parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0;
|
||
}
|
||
} else {
|
||
// at this point, extra isn't content, so add padding
|
||
val += parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0;
|
||
|
||
// at this point, extra isn't content nor padding, so add border
|
||
if ( extra !== "padding" ) {
|
||
val += parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0;
|
||
}
|
||
}
|
||
}
|
||
|
||
return val;
|
||
}
|
||
|
||
function getWidthOrHeight( elem, name, extra ) {
|
||
|
||
// Start with offset property, which is equivalent to the border-box value
|
||
var val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
|
||
valueIsBorderBox = true,
|
||
isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing" ) === "border-box";
|
||
|
||
// some non-html elements return undefined for offsetWidth, so check for null/undefined
|
||
// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
|
||
// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
|
||
if ( val <= 0 || val == null ) {
|
||
// Fall back to computed then uncomputed css if necessary
|
||
val = curCSS( elem, name );
|
||
if ( val < 0 || val == null ) {
|
||
val = elem.style[ name ];
|
||
}
|
||
|
||
// Computed unit is not pixels. Stop here and return.
|
||
if ( rnumnonpx.test(val) ) {
|
||
return val;
|
||
}
|
||
|
||
// we need the check for style in case a browser which returns unreliable values
|
||
// for getComputedStyle silently falls back to the reliable elem.style
|
||
valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] );
|
||
|
||
// Normalize "", auto, and prepare for extra
|
||
val = parseFloat( val ) || 0;
|
||
}
|
||
|
||
// use the active box-sizing model to add/subtract irrelevant styles
|
||
return ( val +
|
||
augmentWidthOrHeight(
|
||
elem,
|
||
name,
|
||
extra || ( isBorderBox ? "border" : "content" ),
|
||
valueIsBorderBox
|
||
)
|
||
) + "px";
|
||
}
|
||
|
||
|
||
// Try to determine the default display value of an element
|
||
function css_defaultDisplay( nodeName ) {
|
||
if ( elemdisplay[ nodeName ] ) {
|
||
return elemdisplay[ nodeName ];
|
||
}
|
||
|
||
var elem = jQuery( "<" + nodeName + ">" ).appendTo( document.body ),
|
||
display = elem.css("display");
|
||
elem.remove();
|
||
|
||
// If the simple way fails,
|
||
// get element's real default display by attaching it to a temp iframe
|
||
if ( display === "none" || display === "" ) {
|
||
// Use the already-created iframe if possible
|
||
iframe = document.body.appendChild(
|
||
iframe || jQuery.extend( document.createElement("iframe"), {
|
||
frameBorder: 0,
|
||
width: 0,
|
||
height: 0
|
||
})
|
||
);
|
||
|
||
// Create a cacheable copy of the iframe document on first call.
|
||
// IE and Opera will allow us to reuse the iframeDoc without re-writing the fake HTML
|
||
// document to it; WebKit & Firefox won't allow reusing the iframe document.
|
||
if ( !iframeDoc || !iframe.createElement ) {
|
||
iframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document;
|
||
iframeDoc.write("<!doctype html><html><body>");
|
||
iframeDoc.close();
|
||
}
|
||
|
||
elem = iframeDoc.body.appendChild( iframeDoc.createElement(nodeName) );
|
||
|
||
display = curCSS( elem, "display" );
|
||
document.body.removeChild( iframe );
|
||
}
|
||
|
||
// Store the correct default display
|
||
elemdisplay[ nodeName ] = display;
|
||
|
||
return display;
|
||
}
|
||
|
||
jQuery.each([ "height", "width" ], function( i, name ) {
|
||
jQuery.cssHooks[ name ] = {
|
||
get: function( elem, computed, extra ) {
|
||
if ( computed ) {
|
||
// certain elements can have dimension info if we invisibly show them
|
||
// however, it must have a current display style that would benefit from this
|
||
if ( elem.offsetWidth === 0 && rdisplayswap.test( curCSS( elem, "display" ) ) ) {
|
||
return jQuery.swap( elem, cssShow, function() {
|
||
return getWidthOrHeight( elem, name, extra );
|
||
});
|
||
} else {
|
||
return getWidthOrHeight( elem, name, extra );
|
||
}
|
||
}
|
||
},
|
||
|
||
set: function( elem, value, extra ) {
|
||
return setPositiveNumber( elem, value, extra ?
|
||
augmentWidthOrHeight(
|
||
elem,
|
||
name,
|
||
extra,
|
||
jQuery.support.boxSizing && jQuery.css( elem, "boxSizing" ) === "border-box"
|
||
) : 0
|
||
);
|
||
}
|
||
};
|
||
});
|
||
|
||
if ( !jQuery.support.opacity ) {
|
||
jQuery.cssHooks.opacity = {
|
||
get: function( elem, computed ) {
|
||
// IE uses filters for opacity
|
||
return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ?
|
||
( 0.01 * parseFloat( RegExp.$1 ) ) + "" :
|
||
computed ? "1" : "";
|
||
},
|
||
|
||
set: function( elem, value ) {
|
||
var style = elem.style,
|
||
currentStyle = elem.currentStyle,
|
||
opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "",
|
||
filter = currentStyle && currentStyle.filter || style.filter || "";
|
||
|
||
// IE has trouble with opacity if it does not have layout
|
||
// Force it by setting the zoom level
|
||
style.zoom = 1;
|
||
|
||
// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652
|
||
if ( value >= 1 && jQuery.trim( filter.replace( ralpha, "" ) ) === "" &&
|
||
style.removeAttribute ) {
|
||
|
||
// Setting style.filter to null, "" & " " still leave "filter:" in the cssText
|
||
// if "filter:" is present at all, clearType is disabled, we want to avoid this
|
||
// style.removeAttribute is IE Only, but so apparently is this code path...
|
||
style.removeAttribute( "filter" );
|
||
|
||
// if there there is no filter style applied in a css rule, we are done
|
||
if ( currentStyle && !currentStyle.filter ) {
|
||
return;
|
||
}
|
||
}
|
||
|
||
// otherwise, set new filter values
|
||
style.filter = ralpha.test( filter ) ?
|
||
filter.replace( ralpha, opacity ) :
|
||
filter + " " + opacity;
|
||
}
|
||
};
|
||
}
|
||
|
||
// These hooks cannot be added until DOM ready because the support test
|
||
// for it is not run until after DOM ready
|
||
jQuery(function() {
|
||
if ( !jQuery.support.reliableMarginRight ) {
|
||
jQuery.cssHooks.marginRight = {
|
||
get: function( elem, computed ) {
|
||
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
|
||
// Work around by temporarily setting element display to inline-block
|
||
return jQuery.swap( elem, { "display": "inline-block" }, function() {
|
||
if ( computed ) {
|
||
return curCSS( elem, "marginRight" );
|
||
}
|
||
});
|
||
}
|
||
};
|
||
}
|
||
|
||
// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
|
||
// getComputedStyle returns percent when specified for top/left/bottom/right
|
||
// rather than make the css module depend on the offset module, we just check for it here
|
||
if ( !jQuery.support.pixelPosition && jQuery.fn.position ) {
|
||
jQuery.each( [ "top", "left" ], function( i, prop ) {
|
||
jQuery.cssHooks[ prop ] = {
|
||
get: function( elem, computed ) {
|
||
if ( computed ) {
|
||
var ret = curCSS( elem, prop );
|
||
// if curCSS returns percentage, fallback to offset
|
||
return rnumnonpx.test( ret ) ? jQuery( elem ).position()[ prop ] + "px" : ret;
|
||
}
|
||
}
|
||
};
|
||
});
|
||
}
|
||
|
||
});
|
||
|
||
if ( jQuery.expr && jQuery.expr.filters ) {
|
||
jQuery.expr.filters.hidden = function( elem ) {
|
||
return ( elem.offsetWidth === 0 && elem.offsetHeight === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || curCSS( elem, "display" )) === "none");
|
||
};
|
||
|
||
jQuery.expr.filters.visible = function( elem ) {
|
||
return !jQuery.expr.filters.hidden( elem );
|
||
};
|
||
}
|
||
|
||
// These hooks are used by animate to expand properties
|
||
jQuery.each({
|
||
margin: "",
|
||
padding: "",
|
||
border: "Width"
|
||
}, function( prefix, suffix ) {
|
||
jQuery.cssHooks[ prefix + suffix ] = {
|
||
expand: function( value ) {
|
||
var i,
|
||
|
||
// assumes a single number if not a string
|
||
parts = typeof value === "string" ? value.split(" ") : [ value ],
|
||
expanded = {};
|
||
|
||
for ( i = 0; i < 4; i++ ) {
|
||
expanded[ prefix + cssExpand[ i ] + suffix ] =
|
||
parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
|
||
}
|
||
|
||
return expanded;
|
||
}
|
||
};
|
||
|
||
if ( !rmargin.test( prefix ) ) {
|
||
jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
|
||
}
|
||
});
|
||
var r20 = /%20/g,
|
||
rbracket = /\[\]$/,
|
||
rCRLF = /\r?\n/g,
|
||
rinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,
|
||
rselectTextarea = /^(?:select|textarea)/i;
|
||
|
||
jQuery.fn.extend({
|
||
serialize: function() {
|
||
return jQuery.param( this.serializeArray() );
|
||
},
|
||
serializeArray: function() {
|
||
return this.map(function(){
|
||
return this.elements ? jQuery.makeArray( this.elements ) : this;
|
||
})
|
||
.filter(function(){
|
||
return this.name && !this.disabled &&
|
||
( this.checked || rselectTextarea.test( this.nodeName ) ||
|
||
rinput.test( this.type ) );
|
||
})
|
||
.map(function( i, elem ){
|
||
var val = jQuery( this ).val();
|
||
|
||
return val == null ?
|
||
null :
|
||
jQuery.isArray( val ) ?
|
||
jQuery.map( val, function( val, i ){
|
||
return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
|
||
}) :
|
||
{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
|
||
}).get();
|
||
}
|
||
});
|
||
|
||
//Serialize an array of form elements or a set of
|
||
//key/values into a query string
|
||
jQuery.param = function( a, traditional ) {
|
||
var prefix,
|
||
s = [],
|
||
add = function( key, value ) {
|
||
// If value is a function, invoke it and return its value
|
||
value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
|
||
s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
|
||
};
|
||
|
||
// Set traditional to true for jQuery <= 1.3.2 behavior.
|
||
if ( traditional === undefined ) {
|
||
traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
|
||
}
|
||
|
||
// If an array was passed in, assume that it is an array of form elements.
|
||
if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
|
||
// Serialize the form elements
|
||
jQuery.each( a, function() {
|
||
add( this.name, this.value );
|
||
});
|
||
|
||
} else {
|
||
// If traditional, encode the "old" way (the way 1.3.2 or older
|
||
// did it), otherwise encode params recursively.
|
||
for ( prefix in a ) {
|
||
buildParams( prefix, a[ prefix ], traditional, add );
|
||
}
|
||
}
|
||
|
||
// Return the resulting serialization
|
||
return s.join( "&" ).replace( r20, "+" );
|
||
};
|
||
|
||
function buildParams( prefix, obj, traditional, add ) {
|
||
var name;
|
||
|
||
if ( jQuery.isArray( obj ) ) {
|
||
// Serialize array item.
|
||
jQuery.each( obj, function( i, v ) {
|
||
if ( traditional || rbracket.test( prefix ) ) {
|
||
// Treat each array item as a scalar.
|
||
add( prefix, v );
|
||
|
||
} else {
|
||
// If array item is non-scalar (array or object), encode its
|
||
// numeric index to resolve deserialization ambiguity issues.
|
||
// Note that rack (as of 1.0.0) can't currently deserialize
|
||
// nested arrays properly, and attempting to do so may cause
|
||
// a server error. Possible fixes are to modify rack's
|
||
// deserialization algorithm or to provide an option or flag
|
||
// to force array serialization to be shallow.
|
||
buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
|
||
}
|
||
});
|
||
|
||
} else if ( !traditional && jQuery.type( obj ) === "object" ) {
|
||
// Serialize object item.
|
||
for ( name in obj ) {
|
||
buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
|
||
}
|
||
|
||
} else {
|
||
// Serialize scalar item.
|
||
add( prefix, obj );
|
||
}
|
||
}
|
||
var
|
||
// Document location
|
||
ajaxLocParts,
|
||
ajaxLocation,
|
||
|
||
rhash = /#.*$/,
|
||
rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL
|
||
// #7653, #8125, #8152: local protocol detection
|
||
rlocalProtocol = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,
|
||
rnoContent = /^(?:GET|HEAD)$/,
|
||
rprotocol = /^\/\//,
|
||
rquery = /\?/,
|
||
rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
|
||
rts = /([?&])_=[^&]*/,
|
||
rurl = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,
|
||
|
||
// Keep a copy of the old load method
|
||
_load = jQuery.fn.load,
|
||
|
||
/* Prefilters
|
||
* 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
|
||
* 2) These are called:
|
||
* - BEFORE asking for a transport
|
||
* - AFTER param serialization (s.data is a string if s.processData is true)
|
||
* 3) key is the dataType
|
||
* 4) the catchall symbol "*" can be used
|
||
* 5) execution will start with transport dataType and THEN continue down to "*" if needed
|
||
*/
|
||
prefilters = {},
|
||
|
||
/* Transports bindings
|
||
* 1) key is the dataType
|
||
* 2) the catchall symbol "*" can be used
|
||
* 3) selection will start with transport dataType and THEN go to "*" if needed
|
||
*/
|
||
transports = {},
|
||
|
||
// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
|
||
allTypes = ["*/"] + ["*"];
|
||
|
||
// #8138, IE may throw an exception when accessing
|
||
// a field from window.location if document.domain has been set
|
||
try {
|
||
ajaxLocation = location.href;
|
||
} catch( e ) {
|
||
// Use the href attribute of an A element
|
||
// since IE will modify it given document.location
|
||
ajaxLocation = document.createElement( "a" );
|
||
ajaxLocation.href = "";
|
||
ajaxLocation = ajaxLocation.href;
|
||
}
|
||
|
||
// Segment location into parts
|
||
ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
|
||
|
||
// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
|
||
function addToPrefiltersOrTransports( structure ) {
|
||
|
||
// dataTypeExpression is optional and defaults to "*"
|
||
return function( dataTypeExpression, func ) {
|
||
|
||
if ( typeof dataTypeExpression !== "string" ) {
|
||
func = dataTypeExpression;
|
||
dataTypeExpression = "*";
|
||
}
|
||
|
||
var dataType, list, placeBefore,
|
||
dataTypes = dataTypeExpression.toLowerCase().split( core_rspace ),
|
||
i = 0,
|
||
length = dataTypes.length;
|
||
|
||
if ( jQuery.isFunction( func ) ) {
|
||
// For each dataType in the dataTypeExpression
|
||
for ( ; i < length; i++ ) {
|
||
dataType = dataTypes[ i ];
|
||
// We control if we're asked to add before
|
||
// any existing element
|
||
placeBefore = /^\+/.test( dataType );
|
||
if ( placeBefore ) {
|
||
dataType = dataType.substr( 1 ) || "*";
|
||
}
|
||
list = structure[ dataType ] = structure[ dataType ] || [];
|
||
// then we add to the structure accordingly
|
||
list[ placeBefore ? "unshift" : "push" ]( func );
|
||
}
|
||
}
|
||
};
|
||
}
|
||
|
||
// Base inspection function for prefilters and transports
|
||
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR,
|
||
dataType /* internal */, inspected /* internal */ ) {
|
||
|
||
dataType = dataType || options.dataTypes[ 0 ];
|
||
inspected = inspected || {};
|
||
|
||
inspected[ dataType ] = true;
|
||
|
||
var selection,
|
||
list = structure[ dataType ],
|
||
i = 0,
|
||
length = list ? list.length : 0,
|
||
executeOnly = ( structure === prefilters );
|
||
|
||
for ( ; i < length && ( executeOnly || !selection ); i++ ) {
|
||
selection = list[ i ]( options, originalOptions, jqXHR );
|
||
// If we got redirected to another dataType
|
||
// we try there if executing only and not done already
|
||
if ( typeof selection === "string" ) {
|
||
if ( !executeOnly || inspected[ selection ] ) {
|
||
selection = undefined;
|
||
} else {
|
||
options.dataTypes.unshift( selection );
|
||
selection = inspectPrefiltersOrTransports(
|
||
structure, options, originalOptions, jqXHR, selection, inspected );
|
||
}
|
||
}
|
||
}
|
||
// If we're only executing or nothing was selected
|
||
// we try the catchall dataType if not done already
|
||
if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) {
|
||
selection = inspectPrefiltersOrTransports(
|
||
structure, options, originalOptions, jqXHR, "*", inspected );
|
||
}
|
||
// unnecessary when only executing (prefilters)
|
||
// but it'll be ignored by the caller in that case
|
||
return selection;
|
||
}
|
||
|
||
// A special extend for ajax options
|
||
// that takes "flat" options (not to be deep extended)
|
||
// Fixes #9887
|
||
function ajaxExtend( target, src ) {
|
||
var key, deep,
|
||
flatOptions = jQuery.ajaxSettings.flatOptions || {};
|
||
for ( key in src ) {
|
||
if ( src[ key ] !== undefined ) {
|
||
( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
|
||
}
|
||
}
|
||
if ( deep ) {
|
||
jQuery.extend( true, target, deep );
|
||
}
|
||
}
|
||
|
||
jQuery.fn.load = function( url, params, callback ) {
|
||
if ( typeof url !== "string" && _load ) {
|
||
return _load.apply( this, arguments );
|
||
}
|
||
|
||
// Don't do a request if no elements are being requested
|
||
if ( !this.length ) {
|
||
return this;
|
||
}
|
||
|
||
var selector, type, response,
|
||
self = this,
|
||
off = url.indexOf(" ");
|
||
|
||
if ( off >= 0 ) {
|
||
selector = url.slice( off, url.length );
|
||
url = url.slice( 0, off );
|
||
}
|
||
|
||
// If it's a function
|
||
if ( jQuery.isFunction( params ) ) {
|
||
|
||
// We assume that it's the callback
|
||
callback = params;
|
||
params = undefined;
|
||
|
||
// Otherwise, build a param string
|
||
} else if ( params && typeof params === "object" ) {
|
||
type = "POST";
|
||
}
|
||
|
||
// Request the remote document
|
||
jQuery.ajax({
|
||
url: url,
|
||
|
||
// if "type" variable is undefined, then "GET" method will be used
|
||
type: type,
|
||
dataType: "html",
|
||
data: params,
|
||
complete: function( jqXHR, status ) {
|
||
if ( callback ) {
|
||
self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
|
||
}
|
||
}
|
||
}).done(function( responseText ) {
|
||
|
||
// Save response for use in complete callback
|
||
response = arguments;
|
||
|
||
// See if a selector was specified
|
||
self.html( selector ?
|
||
|
||
// Create a dummy div to hold the results
|
||
jQuery("<div>")
|
||
|
||
// inject the contents of the document in, removing the scripts
|
||
// to avoid any 'Permission Denied' errors in IE
|
||
.append( responseText.replace( rscript, "" ) )
|
||
|
||
// Locate the specified elements
|
||
.find( selector ) :
|
||
|
||
// If not, just inject the full result
|
||
responseText );
|
||
|
||
});
|
||
|
||
return this;
|
||
};
|
||
|
||
// Attach a bunch of functions for handling common AJAX events
|
||
jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split( " " ), function( i, o ){
|
||
jQuery.fn[ o ] = function( f ){
|
||
return this.on( o, f );
|
||
};
|
||
});
|
||
|
||
jQuery.each( [ "get", "post" ], function( i, method ) {
|
||
jQuery[ method ] = function( url, data, callback, type ) {
|
||
// shift arguments if data argument was omitted
|
||
if ( jQuery.isFunction( data ) ) {
|
||
type = type || callback;
|
||
callback = data;
|
||
data = undefined;
|
||
}
|
||
|
||
return jQuery.ajax({
|
||
type: method,
|
||
url: url,
|
||
data: data,
|
||
success: callback,
|
||
dataType: type
|
||
});
|
||
};
|
||
});
|
||
|
||
jQuery.extend({
|
||
|
||
getScript: function( url, callback ) {
|
||
return jQuery.get( url, undefined, callback, "script" );
|
||
},
|
||
|
||
getJSON: function( url, data, callback ) {
|
||
return jQuery.get( url, data, callback, "json" );
|
||
},
|
||
|
||
// Creates a full fledged settings object into target
|
||
// with both ajaxSettings and settings fields.
|
||
// If target is omitted, writes into ajaxSettings.
|
||
ajaxSetup: function( target, settings ) {
|
||
if ( settings ) {
|
||
// Building a settings object
|
||
ajaxExtend( target, jQuery.ajaxSettings );
|
||
} else {
|
||
// Extending ajaxSettings
|
||
settings = target;
|
||
target = jQuery.ajaxSettings;
|
||
}
|
||
ajaxExtend( target, settings );
|
||
return target;
|
||
},
|
||
|
||
ajaxSettings: {
|
||
url: ajaxLocation,
|
||
isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
|
||
global: true,
|
||
type: "GET",
|
||
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
||
processData: true,
|
||
async: true,
|
||
/*
|
||
timeout: 0,
|
||
data: null,
|
||
dataType: null,
|
||
username: null,
|
||
password: null,
|
||
cache: null,
|
||
throws: false,
|
||
traditional: false,
|
||
headers: {},
|
||
*/
|
||
|
||
accepts: {
|
||
xml: "application/xml, text/xml",
|
||
html: "text/html",
|
||
text: "text/plain",
|
||
json: "application/json, text/javascript",
|
||
"*": allTypes
|
||
},
|
||
|
||
contents: {
|
||
xml: /xml/,
|
||
html: /html/,
|
||
json: /json/
|
||
},
|
||
|
||
responseFields: {
|
||
xml: "responseXML",
|
||
text: "responseText"
|
||
},
|
||
|
||
// List of data converters
|
||
// 1) key format is "source_type destination_type" (a single space in-between)
|
||
// 2) the catchall symbol "*" can be used for source_type
|
||
converters: {
|
||
|
||
// Convert anything to text
|
||
"* text": window.String,
|
||
|
||
// Text to html (true = no transformation)
|
||
"text html": true,
|
||
|
||
// Evaluate text as a json expression
|
||
"text json": jQuery.parseJSON,
|
||
|
||
// Parse text as xml
|
||
"text xml": jQuery.parseXML
|
||
},
|
||
|
||
// For options that shouldn't be deep extended:
|
||
// you can add your own custom options here if
|
||
// and when you create one that shouldn't be
|
||
// deep extended (see ajaxExtend)
|
||
flatOptions: {
|
||
context: true,
|
||
url: true
|
||
}
|
||
},
|
||
|
||
ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
|
||
ajaxTransport: addToPrefiltersOrTransports( transports ),
|
||
|
||
// Main method
|
||
ajax: function( url, options ) {
|
||
|
||
// If url is an object, simulate pre-1.5 signature
|
||
if ( typeof url === "object" ) {
|
||
options = url;
|
||
url = undefined;
|
||
}
|
||
|
||
// Force options to be an object
|
||
options = options || {};
|
||
|
||
var // ifModified key
|
||
ifModifiedKey,
|
||
// Response headers
|
||
responseHeadersString,
|
||
responseHeaders,
|
||
// transport
|
||
transport,
|
||
// timeout handle
|
||
timeoutTimer,
|
||
// Cross-domain detection vars
|
||
parts,
|
||
// To know if global events are to be dispatched
|
||
fireGlobals,
|
||
// Loop variable
|
||
i,
|
||
// Create the final options object
|
||
s = jQuery.ajaxSetup( {}, options ),
|
||
// Callbacks context
|
||
callbackContext = s.context || s,
|
||
// Context for global events
|
||
// It's the callbackContext if one was provided in the options
|
||
// and if it's a DOM node or a jQuery collection
|
||
globalEventContext = callbackContext !== s &&
|
||
( callbackContext.nodeType || callbackContext instanceof jQuery ) ?
|
||
jQuery( callbackContext ) : jQuery.event,
|
||
// Deferreds
|
||
deferred = jQuery.Deferred(),
|
||
completeDeferred = jQuery.Callbacks( "once memory" ),
|
||
// Status-dependent callbacks
|
||
statusCode = s.statusCode || {},
|
||
// Headers (they are sent all at once)
|
||
requestHeaders = {},
|
||
requestHeadersNames = {},
|
||
// The jqXHR state
|
||
state = 0,
|
||
// Default abort message
|
||
strAbort = "canceled",
|
||
// Fake xhr
|
||
jqXHR = {
|
||
|
||
readyState: 0,
|
||
|
||
// Caches the header
|
||
setRequestHeader: function( name, value ) {
|
||
if ( !state ) {
|
||
var lname = name.toLowerCase();
|
||
name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
|
||
requestHeaders[ name ] = value;
|
||
}
|
||
return this;
|
||
},
|
||
|
||
// Raw string
|
||
getAllResponseHeaders: function() {
|
||
return state === 2 ? responseHeadersString : null;
|
||
},
|
||
|
||
// Builds headers hashtable if needed
|
||
getResponseHeader: function( key ) {
|
||
var match;
|
||
if ( state === 2 ) {
|
||
if ( !responseHeaders ) {
|
||
responseHeaders = {};
|
||
while( ( match = rheaders.exec( responseHeadersString ) ) ) {
|
||
responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
|
||
}
|
||
}
|
||
match = responseHeaders[ key.toLowerCase() ];
|
||
}
|
||
return match === undefined ? null : match;
|
||
},
|
||
|
||
// Overrides response content-type header
|
||
overrideMimeType: function( type ) {
|
||
if ( !state ) {
|
||
s.mimeType = type;
|
||
}
|
||
return this;
|
||
},
|
||
|
||
// Cancel the request
|
||
abort: function( statusText ) {
|
||
statusText = statusText || strAbort;
|
||
if ( transport ) {
|
||
transport.abort( statusText );
|
||
}
|
||
done( 0, statusText );
|
||
return this;
|
||
}
|
||
};
|
||
|
||
// Callback for when everything is done
|
||
// It is defined here because jslint complains if it is declared
|
||
// at the end of the function (which would be more logical and readable)
|
||
function done( status, nativeStatusText, responses, headers ) {
|
||
var isSuccess, success, error, response, modified,
|
||
statusText = nativeStatusText;
|
||
|
||
// Called once
|
||
if ( state === 2 ) {
|
||
return;
|
||
}
|
||
|
||
// State is "done" now
|
||
state = 2;
|
||
|
||
// Clear timeout if it exists
|
||
if ( timeoutTimer ) {
|
||
clearTimeout( timeoutTimer );
|
||
}
|
||
|
||
// Dereference transport for early garbage collection
|
||
// (no matter how long the jqXHR object will be used)
|
||
transport = undefined;
|
||
|
||
// Cache response headers
|
||
responseHeadersString = headers || "";
|
||
|
||
// Set readyState
|
||
jqXHR.readyState = status > 0 ? 4 : 0;
|
||
|
||
// Get response data
|
||
if ( responses ) {
|
||
response = ajaxHandleResponses( s, jqXHR, responses );
|
||
}
|
||
|
||
// If successful, handle type chaining
|
||
if ( status >= 200 && status < 300 || status === 304 ) {
|
||
|
||
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
|
||
if ( s.ifModified ) {
|
||
|
||
modified = jqXHR.getResponseHeader("Last-Modified");
|
||
if ( modified ) {
|
||
jQuery.lastModified[ ifModifiedKey ] = modified;
|
||
}
|
||
modified = jqXHR.getResponseHeader("Etag");
|
||
if ( modified ) {
|
||
jQuery.etag[ ifModifiedKey ] = modified;
|
||
}
|
||
}
|
||
|
||
// If not modified
|
||
if ( status === 304 ) {
|
||
|
||
statusText = "notmodified";
|
||
isSuccess = true;
|
||
|
||
// If we have data
|
||
} else {
|
||
|
||
isSuccess = ajaxConvert( s, response );
|
||
statusText = isSuccess.state;
|
||
success = isSuccess.data;
|
||
error = isSuccess.error;
|
||
isSuccess = !error;
|
||
}
|
||
} else {
|
||
// We extract error from statusText
|
||
// then normalize statusText and status for non-aborts
|
||
error = statusText;
|
||
if ( !statusText || status ) {
|
||
statusText = "error";
|
||
if ( status < 0 ) {
|
||
status = 0;
|
||
}
|
||
}
|
||
}
|
||
|
||
// Set data for the fake xhr object
|
||
jqXHR.status = status;
|
||
jqXHR.statusText = ( nativeStatusText || statusText ) + "";
|
||
|
||
// Success/Error
|
||
if ( isSuccess ) {
|
||
deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
|
||
} else {
|
||
deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
|
||
}
|
||
|
||
// Status-dependent callbacks
|
||
jqXHR.statusCode( statusCode );
|
||
statusCode = undefined;
|
||
|
||
if ( fireGlobals ) {
|
||
globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ),
|
||
[ jqXHR, s, isSuccess ? success : error ] );
|
||
}
|
||
|
||
// Complete
|
||
completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
|
||
|
||
if ( fireGlobals ) {
|
||
globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
|
||
// Handle the global AJAX counter
|
||
if ( !( --jQuery.active ) ) {
|
||
jQuery.event.trigger( "ajaxStop" );
|
||
}
|
||
}
|
||
}
|
||
|
||
// Attach deferreds
|
||
deferred.promise( jqXHR );
|
||
jqXHR.success = jqXHR.done;
|
||
jqXHR.error = jqXHR.fail;
|
||
jqXHR.complete = completeDeferred.add;
|
||
|
||
// Status-dependent callbacks
|
||
jqXHR.statusCode = function( map ) {
|
||
if ( map ) {
|
||
var tmp;
|
||
if ( state < 2 ) {
|
||
for ( tmp in map ) {
|
||
statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];
|
||
}
|
||
} else {
|
||
tmp = map[ jqXHR.status ];
|
||
jqXHR.always( tmp );
|
||
}
|
||
}
|
||
return this;
|
||
};
|
||
|
||
// Remove hash character (#7531: and string promotion)
|
||
// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)
|
||
// We also use the url parameter if available
|
||
s.url = ( ( url || s.url ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
|
||
|
||
// Extract dataTypes list
|
||
s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( core_rspace );
|
||
|
||
// A cross-domain request is in order when we have a protocol:host:port mismatch
|
||
if ( s.crossDomain == null ) {
|
||
parts = rurl.exec( s.url.toLowerCase() );
|
||
s.crossDomain = !!( parts &&
|
||
( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
|
||
( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) !=
|
||
( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) )
|
||
);
|
||
}
|
||
|
||
// Convert data if not already a string
|
||
if ( s.data && s.processData && typeof s.data !== "string" ) {
|
||
s.data = jQuery.param( s.data, s.traditional );
|
||
}
|
||
|
||
// Apply prefilters
|
||
inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
|
||
|
||
// If request was aborted inside a prefilter, stop there
|
||
if ( state === 2 ) {
|
||
return jqXHR;
|
||
}
|
||
|
||
// We can fire global events as of now if asked to
|
||
fireGlobals = s.global;
|
||
|
||
// Uppercase the type
|
||
s.type = s.type.toUpperCase();
|
||
|
||
// Determine if request has content
|
||
s.hasContent = !rnoContent.test( s.type );
|
||
|
||
// Watch for a new set of requests
|
||
if ( fireGlobals && jQuery.active++ === 0 ) {
|
||
jQuery.event.trigger( "ajaxStart" );
|
||
}
|
||
|
||
// More options handling for requests with no content
|
||
if ( !s.hasContent ) {
|
||
|
||
// If data is available, append data to url
|
||
if ( s.data ) {
|
||
s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data;
|
||
// #9682: remove data so that it's not used in an eventual retry
|
||
delete s.data;
|
||
}
|
||
|
||
// Get ifModifiedKey before adding the anti-cache parameter
|
||
ifModifiedKey = s.url;
|
||
|
||
// Add anti-cache in url if needed
|
||
if ( s.cache === false ) {
|
||
|
||
var ts = jQuery.now(),
|
||
// try replacing _= if it is there
|
||
ret = s.url.replace( rts, "$1_=" + ts );
|
||
|
||
// if nothing was replaced, add timestamp to the end
|
||
s.url = ret + ( ( ret === s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "" );
|
||
}
|
||
}
|
||
|
||
// Set the correct header, if data is being sent
|
||
if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
|
||
jqXHR.setRequestHeader( "Content-Type", s.contentType );
|
||
}
|
||
|
||
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
|
||
if ( s.ifModified ) {
|
||
ifModifiedKey = ifModifiedKey || s.url;
|
||
if ( jQuery.lastModified[ ifModifiedKey ] ) {
|
||
jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ ifModifiedKey ] );
|
||
}
|
||
if ( jQuery.etag[ ifModifiedKey ] ) {
|
||
jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ ifModifiedKey ] );
|
||
}
|
||
}
|
||
|
||
// Set the Accepts header for the server, depending on the dataType
|
||
jqXHR.setRequestHeader(
|
||
"Accept",
|
||
s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
|
||
s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
|
||
s.accepts[ "*" ]
|
||
);
|
||
|
||
// Check for headers option
|
||
for ( i in s.headers ) {
|
||
jqXHR.setRequestHeader( i, s.headers[ i ] );
|
||
}
|
||
|
||
// Allow custom headers/mimetypes and early abort
|
||
if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
|
||
// Abort if not done already and return
|
||
return jqXHR.abort();
|
||
|
||
}
|
||
|
||
// aborting is no longer a cancellation
|
||
strAbort = "abort";
|
||
|
||
// Install callbacks on deferreds
|
||
for ( i in { success: 1, error: 1, complete: 1 } ) {
|
||
jqXHR[ i ]( s[ i ] );
|
||
}
|
||
|
||
// Get transport
|
||
transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
|
||
|
||
// If no transport, we auto-abort
|
||
if ( !transport ) {
|
||
done( -1, "No Transport" );
|
||
} else {
|
||
jqXHR.readyState = 1;
|
||
// Send global event
|
||
if ( fireGlobals ) {
|
||
globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
|
||
}
|
||
// Timeout
|
||
if ( s.async && s.timeout > 0 ) {
|
||
timeoutTimer = setTimeout( function(){
|
||
jqXHR.abort( "timeout" );
|
||
}, s.timeout );
|
||
}
|
||
|
||
try {
|
||
state = 1;
|
||
transport.send( requestHeaders, done );
|
||
} catch (e) {
|
||
// Propagate exception as error if not done
|
||
if ( state < 2 ) {
|
||
done( -1, e );
|
||
// Simply rethrow otherwise
|
||
} else {
|
||
throw e;
|
||
}
|
||
}
|
||
}
|
||
|
||
return jqXHR;
|
||
},
|
||
|
||
// Counter for holding the number of active queries
|
||
active: 0,
|
||
|
||
// Last-Modified header cache for next request
|
||
lastModified: {},
|
||
etag: {}
|
||
|
||
});
|
||
|
||
/* Handles responses to an ajax request:
|
||
* - sets all responseXXX fields accordingly
|
||
* - finds the right dataType (mediates between content-type and expected dataType)
|
||
* - returns the corresponding response
|
||
*/
|
||
function ajaxHandleResponses( s, jqXHR, responses ) {
|
||
|
||
var ct, type, finalDataType, firstDataType,
|
||
contents = s.contents,
|
||
dataTypes = s.dataTypes,
|
||
responseFields = s.responseFields;
|
||
|
||
// Fill responseXXX fields
|
||
for ( type in responseFields ) {
|
||
if ( type in responses ) {
|
||
jqXHR[ responseFields[type] ] = responses[ type ];
|
||
}
|
||
}
|
||
|
||
// Remove auto dataType and get content-type in the process
|
||
while( dataTypes[ 0 ] === "*" ) {
|
||
dataTypes.shift();
|
||
if ( ct === undefined ) {
|
||
ct = s.mimeType || jqXHR.getResponseHeader( "content-type" );
|
||
}
|
||
}
|
||
|
||
// Check if we're dealing with a known content-type
|
||
if ( ct ) {
|
||
for ( type in contents ) {
|
||
if ( contents[ type ] && contents[ type ].test( ct ) ) {
|
||
dataTypes.unshift( type );
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
// Check to see if we have a response for the expected dataType
|
||
if ( dataTypes[ 0 ] in responses ) {
|
||
finalDataType = dataTypes[ 0 ];
|
||
} else {
|
||
// Try convertible dataTypes
|
||
for ( type in responses ) {
|
||
if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
|
||
finalDataType = type;
|
||
break;
|
||
}
|
||
if ( !firstDataType ) {
|
||
firstDataType = type;
|
||
}
|
||
}
|
||
// Or just use first one
|
||
finalDataType = finalDataType || firstDataType;
|
||
}
|
||
|
||
// If we found a dataType
|
||
// We add the dataType to the list if needed
|
||
// and return the corresponding response
|
||
if ( finalDataType ) {
|
||
if ( finalDataType !== dataTypes[ 0 ] ) {
|
||
dataTypes.unshift( finalDataType );
|
||
}
|
||
return responses[ finalDataType ];
|
||
}
|
||
}
|
||
|
||
// Chain conversions given the request and the original response
|
||
function ajaxConvert( s, response ) {
|
||
|
||
var conv, conv2, current, tmp,
|
||
// Work with a copy of dataTypes in case we need to modify it for conversion
|
||
dataTypes = s.dataTypes.slice(),
|
||
prev = dataTypes[ 0 ],
|
||
converters = {},
|
||
i = 0;
|
||
|
||
// Apply the dataFilter if provided
|
||
if ( s.dataFilter ) {
|
||
response = s.dataFilter( response, s.dataType );
|
||
}
|
||
|
||
// Create converters map with lowercased keys
|
||
if ( dataTypes[ 1 ] ) {
|
||
for ( conv in s.converters ) {
|
||
converters[ conv.toLowerCase() ] = s.converters[ conv ];
|
||
}
|
||
}
|
||
|
||
// Convert to each sequential dataType, tolerating list modification
|
||
for ( ; (current = dataTypes[++i]); ) {
|
||
|
||
// There's only work to do if current dataType is non-auto
|
||
if ( current !== "*" ) {
|
||
|
||
// Convert response if prev dataType is non-auto and differs from current
|
||
if ( prev !== "*" && prev !== current ) {
|
||
|
||
// Seek a direct converter
|
||
conv = converters[ prev + " " + current ] || converters[ "* " + current ];
|
||
|
||
// If none found, seek a pair
|
||
if ( !conv ) {
|
||
for ( conv2 in converters ) {
|
||
|
||
// If conv2 outputs current
|
||
tmp = conv2.split(" ");
|
||
if ( tmp[ 1 ] === current ) {
|
||
|
||
// If prev can be converted to accepted input
|
||
conv = converters[ prev + " " + tmp[ 0 ] ] ||
|
||
converters[ "* " + tmp[ 0 ] ];
|
||
if ( conv ) {
|
||
// Condense equivalence converters
|
||
if ( conv === true ) {
|
||
conv = converters[ conv2 ];
|
||
|
||
// Otherwise, insert the intermediate dataType
|
||
} else if ( converters[ conv2 ] !== true ) {
|
||
current = tmp[ 0 ];
|
||
dataTypes.splice( i--, 0, current );
|
||
}
|
||
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Apply converter (if not an equivalence)
|
||
if ( conv !== true ) {
|
||
|
||
// Unless errors are allowed to bubble, catch and return them
|
||
if ( conv && s["throws"] ) {
|
||
response = conv( response );
|
||
} else {
|
||
try {
|
||
response = conv( response );
|
||
} catch ( e ) {
|
||
return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Update prev for next iteration
|
||
prev = current;
|
||
}
|
||
}
|
||
|
||
return { state: "success", data: response };
|
||
}
|
||
var oldCallbacks = [],
|
||
rquestion = /\?/,
|
||
rjsonp = /(=)\?(?=&|$)|\?\?/,
|
||
nonce = jQuery.now();
|
||
|
||
// Default jsonp settings
|
||
jQuery.ajaxSetup({
|
||
jsonp: "callback",
|
||
jsonpCallback: function() {
|
||
var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
|
||
this[ callback ] = true;
|
||
return callback;
|
||
}
|
||
});
|
||
|
||
// Detect, normalize options and install callbacks for jsonp requests
|
||
jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
|
||
|
||
var callbackName, overwritten, responseContainer,
|
||
data = s.data,
|
||
url = s.url,
|
||
hasCallback = s.jsonp !== false,
|
||
replaceInUrl = hasCallback && rjsonp.test( url ),
|
||
replaceInData = hasCallback && !replaceInUrl && typeof data === "string" &&
|
||
!( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") &&
|
||
rjsonp.test( data );
|
||
|
||
// Handle iff the expected data type is "jsonp" or we have a parameter to set
|
||
if ( s.dataTypes[ 0 ] === "jsonp" || replaceInUrl || replaceInData ) {
|
||
|
||
// Get callback name, remembering preexisting value associated with it
|
||
callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
|
||
s.jsonpCallback() :
|
||
s.jsonpCallback;
|
||
overwritten = window[ callbackName ];
|
||
|
||
// Insert callback into url or form data
|
||
if ( replaceInUrl ) {
|
||
s.url = url.replace( rjsonp, "$1" + callbackName );
|
||
} else if ( replaceInData ) {
|
||
s.data = data.replace( rjsonp, "$1" + callbackName );
|
||
} else if ( hasCallback ) {
|
||
s.url += ( rquestion.test( url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
|
||
}
|
||
|
||
// Use data converter to retrieve json after script execution
|
||
s.converters["script json"] = function() {
|
||
if ( !responseContainer ) {
|
||
jQuery.error( callbackName + " was not called" );
|
||
}
|
||
return responseContainer[ 0 ];
|
||
};
|
||
|
||
// force json dataType
|
||
s.dataTypes[ 0 ] = "json";
|
||
|
||
// Install callback
|
||
window[ callbackName ] = function() {
|
||
responseContainer = arguments;
|
||
};
|
||
|
||
// Clean-up function (fires after converters)
|
||
jqXHR.always(function() {
|
||
// Restore preexisting value
|
||
window[ callbackName ] = overwritten;
|
||
|
||
// Save back as free
|
||
if ( s[ callbackName ] ) {
|
||
// make sure that re-using the options doesn't screw things around
|
||
s.jsonpCallback = originalSettings.jsonpCallback;
|
||
|
||
// save the callback name for future use
|
||
oldCallbacks.push( callbackName );
|
||
}
|
||
|
||
// Call if it was a function and we have a response
|
||
if ( responseContainer && jQuery.isFunction( overwritten ) ) {
|
||
overwritten( responseContainer[ 0 ] );
|
||
}
|
||
|
||
responseContainer = overwritten = undefined;
|
||
});
|
||
|
||
// Delegate to script
|
||
return "script";
|
||
}
|
||
});
|
||
// Install script dataType
|
||
jQuery.ajaxSetup({
|
||
accepts: {
|
||
script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
|
||
},
|
||
contents: {
|
||
script: /javascript|ecmascript/
|
||
},
|
||
converters: {
|
||
"text script": function( text ) {
|
||
jQuery.globalEval( text );
|
||
return text;
|
||
}
|
||
}
|
||
});
|
||
|
||
// Handle cache's special case and global
|
||
jQuery.ajaxPrefilter( "script", function( s ) {
|
||
if ( s.cache === undefined ) {
|
||
s.cache = false;
|
||
}
|
||
if ( s.crossDomain ) {
|
||
s.type = "GET";
|
||
s.global = false;
|
||
}
|
||
});
|
||
|
||
// Bind script tag hack transport
|
||
jQuery.ajaxTransport( "script", function(s) {
|
||
|
||
// This transport only deals with cross domain requests
|
||
if ( s.crossDomain ) {
|
||
|
||
var script,
|
||
head = document.head || document.getElementsByTagName( "head" )[0] || document.documentElement;
|
||
|
||
return {
|
||
|
||
send: function( _, callback ) {
|
||
|
||
script = document.createElement( "script" );
|
||
|
||
script.async = "async";
|
||
|
||
if ( s.scriptCharset ) {
|
||
script.charset = s.scriptCharset;
|
||
}
|
||
|
||
script.src = s.url;
|
||
|
||
// Attach handlers for all browsers
|
||
script.onload = script.onreadystatechange = function( _, isAbort ) {
|
||
|
||
if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {
|
||
|
||
// Handle memory leak in IE
|
||
script.onload = script.onreadystatechange = null;
|
||
|
||
// Remove the script
|
||
if ( head && script.parentNode ) {
|
||
head.removeChild( script );
|
||
}
|
||
|
||
// Dereference the script
|
||
script = undefined;
|
||
|
||
// Callback if not abort
|
||
if ( !isAbort ) {
|
||
callback( 200, "success" );
|
||
}
|
||
}
|
||
};
|
||
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
|
||
// This arises when a base node is used (#2709 and #4378).
|
||
head.insertBefore( script, head.firstChild );
|
||
},
|
||
|
||
abort: function() {
|
||
if ( script ) {
|
||
script.onload( 0, 1 );
|
||
}
|
||
}
|
||
};
|
||
}
|
||
});
|
||
var xhrCallbacks,
|
||
// #5280: Internet Explorer will keep connections alive if we don't abort on unload
|
||
xhrOnUnloadAbort = window.ActiveXObject ? function() {
|
||
// Abort all pending requests
|
||
for ( var key in xhrCallbacks ) {
|
||
xhrCallbacks[ key ]( 0, 1 );
|
||
}
|
||
} : false,
|
||
xhrId = 0;
|
||
|
||
// Functions to create xhrs
|
||
function createStandardXHR() {
|
||
try {
|
||
return new window.XMLHttpRequest();
|
||
} catch( e ) {}
|
||
}
|
||
|
||
function createActiveXHR() {
|
||
try {
|
||
return new window.ActiveXObject( "Microsoft.XMLHTTP" );
|
||
} catch( e ) {}
|
||
}
|
||
|
||
// Create the request object
|
||
// (This is still attached to ajaxSettings for backward compatibility)
|
||
jQuery.ajaxSettings.xhr = window.ActiveXObject ?
|
||
/* Microsoft failed to properly
|
||
* implement the XMLHttpRequest in IE7 (can't request local files),
|
||
* so we use the ActiveXObject when it is available
|
||
* Additionally XMLHttpRequest can be disabled in IE7/IE8 so
|
||
* we need a fallback.
|
||
*/
|
||
function() {
|
||
return !this.isLocal && createStandardXHR() || createActiveXHR();
|
||
} :
|
||
// For all other browsers, use the standard XMLHttpRequest object
|
||
createStandardXHR;
|
||
|
||
// Determine support properties
|
||
(function( xhr ) {
|
||
jQuery.extend( jQuery.support, {
|
||
ajax: !!xhr,
|
||
cors: !!xhr && ( "withCredentials" in xhr )
|
||
});
|
||
})( jQuery.ajaxSettings.xhr() );
|
||
|
||
// Create transport if the browser can provide an xhr
|
||
if ( jQuery.support.ajax ) {
|
||
|
||
jQuery.ajaxTransport(function( s ) {
|
||
// Cross domain only allowed if supported through XMLHttpRequest
|
||
if ( !s.crossDomain || jQuery.support.cors ) {
|
||
|
||
var callback;
|
||
|
||
return {
|
||
send: function( headers, complete ) {
|
||
|
||
// Get a new xhr
|
||
var handle, i,
|
||
xhr = s.xhr();
|
||
|
||
// Open the socket
|
||
// Passing null username, generates a login popup on Opera (#2865)
|
||
if ( s.username ) {
|
||
xhr.open( s.type, s.url, s.async, s.username, s.password );
|
||
} else {
|
||
xhr.open( s.type, s.url, s.async );
|
||
}
|
||
|
||
// Apply custom fields if provided
|
||
if ( s.xhrFields ) {
|
||
for ( i in s.xhrFields ) {
|
||
xhr[ i ] = s.xhrFields[ i ];
|
||
}
|
||
}
|
||
|
||
// Override mime type if needed
|
||
if ( s.mimeType && xhr.overrideMimeType ) {
|
||
xhr.overrideMimeType( s.mimeType );
|
||
}
|
||
|
||
// X-Requested-With header
|
||
// For cross-domain requests, seeing as conditions for a preflight are
|
||
// akin to a jigsaw puzzle, we simply never set it to be sure.
|
||
// (it can always be set on a per-request basis or even using ajaxSetup)
|
||
// For same-domain requests, won't change header if already provided.
|
||
if ( !s.crossDomain && !headers["X-Requested-With"] ) {
|
||
headers[ "X-Requested-With" ] = "XMLHttpRequest";
|
||
}
|
||
|
||
// Need an extra try/catch for cross domain requests in Firefox 3
|
||
try {
|
||
for ( i in headers ) {
|
||
xhr.setRequestHeader( i, headers[ i ] );
|
||
}
|
||
} catch( _ ) {}
|
||
|
||
// Do send the request
|
||
// This may raise an exception which is actually
|
||
// handled in jQuery.ajax (so no try/catch here)
|
||
xhr.send( ( s.hasContent && s.data ) || null );
|
||
|
||
// Listener
|
||
callback = function( _, isAbort ) {
|
||
|
||
var status,
|
||
statusText,
|
||
responseHeaders,
|
||
responses,
|
||
xml;
|
||
|
||
// Firefox throws exceptions when accessing properties
|
||
// of an xhr when a network error occurred
|
||
// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
|
||
try {
|
||
|
||
// Was never called and is aborted or complete
|
||
if ( callback && ( isAbort || xhr.readyState === 4 ) ) {
|
||
|
||
// Only called once
|
||
callback = undefined;
|
||
|
||
// Do not keep as active anymore
|
||
if ( handle ) {
|
||
xhr.onreadystatechange = jQuery.noop;
|
||
if ( xhrOnUnloadAbort ) {
|
||
delete xhrCallbacks[ handle ];
|
||
}
|
||
}
|
||
|
||
// If it's an abort
|
||
if ( isAbort ) {
|
||
// Abort it manually if needed
|
||
if ( xhr.readyState !== 4 ) {
|
||
xhr.abort();
|
||
}
|
||
} else {
|
||
status = xhr.status;
|
||
responseHeaders = xhr.getAllResponseHeaders();
|
||
responses = {};
|
||
xml = xhr.responseXML;
|
||
|
||
// Construct response list
|
||
if ( xml && xml.documentElement /* #4958 */ ) {
|
||
responses.xml = xml;
|
||
}
|
||
|
||
// When requesting binary data, IE6-9 will throw an exception
|
||
// on any attempt to access responseText (#11426)
|
||
try {
|
||
responses.text = xhr.responseText;
|
||
} catch( e ) {
|
||
}
|
||
|
||
// Firefox throws an exception when accessing
|
||
// statusText for faulty cross-domain requests
|
||
try {
|
||
statusText = xhr.statusText;
|
||
} catch( e ) {
|
||
// We normalize with Webkit giving an empty statusText
|
||
statusText = "";
|
||
}
|
||
|
||
// Filter status for non standard behaviors
|
||
|
||
// If the request is local and we have data: assume a success
|
||
// (success with no data won't get notified, that's the best we
|
||
// can do given current implementations)
|
||
if ( !status && s.isLocal && !s.crossDomain ) {
|
||
status = responses.text ? 200 : 404;
|
||
// IE - #1450: sometimes returns 1223 when it should be 204
|
||
} else if ( status === 1223 ) {
|
||
status = 204;
|
||
}
|
||
}
|
||
}
|
||
} catch( firefoxAccessException ) {
|
||
if ( !isAbort ) {
|
||
complete( -1, firefoxAccessException );
|
||
}
|
||
}
|
||
|
||
// Call complete if needed
|
||
if ( responses ) {
|
||
complete( status, statusText, responses, responseHeaders );
|
||
}
|
||
};
|
||
|
||
if ( !s.async ) {
|
||
// if we're in sync mode we fire the callback
|
||
callback();
|
||
} else if ( xhr.readyState === 4 ) {
|
||
// (IE6 & IE7) if it's in cache and has been
|
||
// retrieved directly we need to fire the callback
|
||
setTimeout( callback, 0 );
|
||
} else {
|
||
handle = ++xhrId;
|
||
if ( xhrOnUnloadAbort ) {
|
||
// Create the active xhrs callbacks list if needed
|
||
// and attach the unload handler
|
||
if ( !xhrCallbacks ) {
|
||
xhrCallbacks = {};
|
||
jQuery( window ).unload( xhrOnUnloadAbort );
|
||
}
|
||
// Add to list of active xhrs callbacks
|
||
xhrCallbacks[ handle ] = callback;
|
||
}
|
||
xhr.onreadystatechange = callback;
|
||
}
|
||
},
|
||
|
||
abort: function() {
|
||
if ( callback ) {
|
||
callback(0,1);
|
||
}
|
||
}
|
||
};
|
||
}
|
||
});
|
||
}
|
||
var fxNow, timerId,
|
||
rfxtypes = /^(?:toggle|show|hide)$/,
|
||
rfxnum = new RegExp( "^(?:([-+])=|)(" + core_pnum + ")([a-z%]*)$", "i" ),
|
||
rrun = /queueHooks$/,
|
||
animationPrefilters = [ defaultPrefilter ],
|
||
tweeners = {
|
||
"*": [function( prop, value ) {
|
||
var end, unit,
|
||
tween = this.createTween( prop, value ),
|
||
parts = rfxnum.exec( value ),
|
||
target = tween.cur(),
|
||
start = +target || 0,
|
||
scale = 1,
|
||
maxIterations = 20;
|
||
|
||
if ( parts ) {
|
||
end = +parts[2];
|
||
unit = parts[3] || ( jQuery.cssNumber[ prop ] ? "" : "px" );
|
||
|
||
// We need to compute starting value
|
||
if ( unit !== "px" && start ) {
|
||
// Iteratively approximate from a nonzero starting point
|
||
// Prefer the current property, because this process will be trivial if it uses the same units
|
||
// Fallback to end or a simple constant
|
||
start = jQuery.css( tween.elem, prop, true ) || end || 1;
|
||
|
||
do {
|
||
// If previous iteration zeroed out, double until we get *something*
|
||
// Use a string for doubling factor so we don't accidentally see scale as unchanged below
|
||
scale = scale || ".5";
|
||
|
||
// Adjust and apply
|
||
start = start / scale;
|
||
jQuery.style( tween.elem, prop, start + unit );
|
||
|
||
// Update scale, tolerating zero or NaN from tween.cur()
|
||
// And breaking the loop if scale is unchanged or perfect, or if we've just had enough
|
||
} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
|
||
}
|
||
|
||
tween.unit = unit;
|
||
tween.start = start;
|
||
// If a +=/-= token was provided, we're doing a relative animation
|
||
tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end;
|
||
}
|
||
return tween;
|
||
}]
|
||
};
|
||
|
||
// Animations created synchronously will run synchronously
|
||
function createFxNow() {
|
||
setTimeout(function() {
|
||
fxNow = undefined;
|
||
}, 0 );
|
||
return ( fxNow = jQuery.now() );
|
||
}
|
||
|
||
function createTweens( animation, props ) {
|
||
jQuery.each( props, function( prop, value ) {
|
||
var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
|
||
index = 0,
|
||
length = collection.length;
|
||
for ( ; index < length; index++ ) {
|
||
if ( collection[ index ].call( animation, prop, value ) ) {
|
||
|
||
// we're done with this property
|
||
return;
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
function Animation( elem, properties, options ) {
|
||
var result,
|
||
index = 0,
|
||
tweenerIndex = 0,
|
||
length = animationPrefilters.length,
|
||
deferred = jQuery.Deferred().always( function() {
|
||
// don't match elem in the :animated selector
|
||
delete tick.elem;
|
||
}),
|
||
tick = function() {
|
||
var currentTime = fxNow || createFxNow(),
|
||
remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
|
||
// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
|
||
temp = remaining / animation.duration || 0,
|
||
percent = 1 - temp,
|
||
index = 0,
|
||
length = animation.tweens.length;
|
||
|
||
for ( ; index < length ; index++ ) {
|
||
animation.tweens[ index ].run( percent );
|
||
}
|
||
|
||
deferred.notifyWith( elem, [ animation, percent, remaining ]);
|
||
|
||
if ( percent < 1 && length ) {
|
||
return remaining;
|
||
} else {
|
||
deferred.resolveWith( elem, [ animation ] );
|
||
return false;
|
||
}
|
||
},
|
||
animation = deferred.promise({
|
||
elem: elem,
|
||
props: jQuery.extend( {}, properties ),
|
||
opts: jQuery.extend( true, { specialEasing: {} }, options ),
|
||
originalProperties: properties,
|
||
originalOptions: options,
|
||
startTime: fxNow || createFxNow(),
|
||
duration: options.duration,
|
||
tweens: [],
|
||
createTween: function( prop, end, easing ) {
|
||
var tween = jQuery.Tween( elem, animation.opts, prop, end,
|
||
animation.opts.specialEasing[ prop ] || animation.opts.easing );
|
||
animation.tweens.push( tween );
|
||
return tween;
|
||
},
|
||
stop: function( gotoEnd ) {
|
||
var index = 0,
|
||
// if we are going to the end, we want to run all the tweens
|
||
// otherwise we skip this part
|
||
length = gotoEnd ? animation.tweens.length : 0;
|
||
|
||
for ( ; index < length ; index++ ) {
|
||
animation.tweens[ index ].run( 1 );
|
||
}
|
||
|
||
// resolve when we played the last frame
|
||
// otherwise, reject
|
||
if ( gotoEnd ) {
|
||
deferred.resolveWith( elem, [ animation, gotoEnd ] );
|
||
} else {
|
||
deferred.rejectWith( elem, [ animation, gotoEnd ] );
|
||
}
|
||
return this;
|
||
}
|
||
}),
|
||
props = animation.props;
|
||
|
||
propFilter( props, animation.opts.specialEasing );
|
||
|
||
for ( ; index < length ; index++ ) {
|
||
result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
|
||
if ( result ) {
|
||
return result;
|
||
}
|
||
}
|
||
|
||
createTweens( animation, props );
|
||
|
||
if ( jQuery.isFunction( animation.opts.start ) ) {
|
||
animation.opts.start.call( elem, animation );
|
||
}
|
||
|
||
jQuery.fx.timer(
|
||
jQuery.extend( tick, {
|
||
anim: animation,
|
||
queue: animation.opts.queue,
|
||
elem: elem
|
||
})
|
||
);
|
||
|
||
// attach callbacks from options
|
||
return animation.progress( animation.opts.progress )
|
||
.done( animation.opts.done, animation.opts.complete )
|
||
.fail( animation.opts.fail )
|
||
.always( animation.opts.always );
|
||
}
|
||
|
||
function propFilter( props, specialEasing ) {
|
||
var index, name, easing, value, hooks;
|
||
|
||
// camelCase, specialEasing and expand cssHook pass
|
||
for ( index in props ) {
|
||
name = jQuery.camelCase( index );
|
||
easing = specialEasing[ name ];
|
||
value = props[ index ];
|
||
if ( jQuery.isArray( value ) ) {
|
||
easing = value[ 1 ];
|
||
value = props[ index ] = value[ 0 ];
|
||
}
|
||
|
||
if ( index !== name ) {
|
||
props[ name ] = value;
|
||
delete props[ index ];
|
||
}
|
||
|
||
hooks = jQuery.cssHooks[ name ];
|
||
if ( hooks && "expand" in hooks ) {
|
||
value = hooks.expand( value );
|
||
delete props[ name ];
|
||
|
||
// not quite $.extend, this wont overwrite keys already present.
|
||
// also - reusing 'index' from above because we have the correct "name"
|
||
for ( index in value ) {
|
||
if ( !( index in props ) ) {
|
||
props[ index ] = value[ index ];
|
||
specialEasing[ index ] = easing;
|
||
}
|
||
}
|
||
} else {
|
||
specialEasing[ name ] = easing;
|
||
}
|
||
}
|
||
}
|
||
|
||
jQuery.Animation = jQuery.extend( Animation, {
|
||
|
||
tweener: function( props, callback ) {
|
||
if ( jQuery.isFunction( props ) ) {
|
||
callback = props;
|
||
props = [ "*" ];
|
||
} else {
|
||
props = props.split(" ");
|
||
}
|
||
|
||
var prop,
|
||
index = 0,
|
||
length = props.length;
|
||
|
||
for ( ; index < length ; index++ ) {
|
||
prop = props[ index ];
|
||
tweeners[ prop ] = tweeners[ prop ] || [];
|
||
tweeners[ prop ].unshift( callback );
|
||
}
|
||
},
|
||
|
||
prefilter: function( callback, prepend ) {
|
||
if ( prepend ) {
|
||
animationPrefilters.unshift( callback );
|
||
} else {
|
||
animationPrefilters.push( callback );
|
||
}
|
||
}
|
||
});
|
||
|
||
function defaultPrefilter( elem, props, opts ) {
|
||
var index, prop, value, length, dataShow, toggle, tween, hooks, oldfire,
|
||
anim = this,
|
||
style = elem.style,
|
||
orig = {},
|
||
handled = [],
|
||
hidden = elem.nodeType && isHidden( elem );
|
||
|
||
// handle queue: false promises
|
||
if ( !opts.queue ) {
|
||
hooks = jQuery._queueHooks( elem, "fx" );
|
||
if ( hooks.unqueued == null ) {
|
||
hooks.unqueued = 0;
|
||
oldfire = hooks.empty.fire;
|
||
hooks.empty.fire = function() {
|
||
if ( !hooks.unqueued ) {
|
||
oldfire();
|
||
}
|
||
};
|
||
}
|
||
hooks.unqueued++;
|
||
|
||
anim.always(function() {
|
||
// doing this makes sure that the complete handler will be called
|
||
// before this completes
|
||
anim.always(function() {
|
||
hooks.unqueued--;
|
||
if ( !jQuery.queue( elem, "fx" ).length ) {
|
||
hooks.empty.fire();
|
||
}
|
||
});
|
||
});
|
||
}
|
||
|
||
// height/width overflow pass
|
||
if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
|
||
// Make sure that nothing sneaks out
|
||
// Record all 3 overflow attributes because IE does not
|
||
// change the overflow attribute when overflowX and
|
||
// overflowY are set to the same value
|
||
opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
|
||
|
||
// Set display property to inline-block for height/width
|
||
// animations on inline elements that are having width/height animated
|
||
if ( jQuery.css( elem, "display" ) === "inline" &&
|
||
jQuery.css( elem, "float" ) === "none" ) {
|
||
|
||
// inline-level elements accept inline-block;
|
||
// block-level elements need to be inline with layout
|
||
if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) {
|
||
style.display = "inline-block";
|
||
|
||
} else {
|
||
style.zoom = 1;
|
||
}
|
||
}
|
||
}
|
||
|
||
if ( opts.overflow ) {
|
||
style.overflow = "hidden";
|
||
if ( !jQuery.support.shrinkWrapBlocks ) {
|
||
anim.done(function() {
|
||
style.overflow = opts.overflow[ 0 ];
|
||
style.overflowX = opts.overflow[ 1 ];
|
||
style.overflowY = opts.overflow[ 2 ];
|
||
});
|
||
}
|
||
}
|
||
|
||
|
||
// show/hide pass
|
||
for ( index in props ) {
|
||
value = props[ index ];
|
||
if ( rfxtypes.exec( value ) ) {
|
||
delete props[ index ];
|
||
toggle = toggle || value === "toggle";
|
||
if ( value === ( hidden ? "hide" : "show" ) ) {
|
||
continue;
|
||
}
|
||
handled.push( index );
|
||
}
|
||
}
|
||
|
||
length = handled.length;
|
||
if ( length ) {
|
||
dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} );
|
||
if ( "hidden" in dataShow ) {
|
||
hidden = dataShow.hidden;
|
||
}
|
||
|
||
// store state if its toggle - enables .stop().toggle() to "reverse"
|
||
if ( toggle ) {
|
||
dataShow.hidden = !hidden;
|
||
}
|
||
if ( hidden ) {
|
||
jQuery( elem ).show();
|
||
} else {
|
||
anim.done(function() {
|
||
jQuery( elem ).hide();
|
||
});
|
||
}
|
||
anim.done(function() {
|
||
var prop;
|
||
jQuery.removeData( elem, "fxshow", true );
|
||
for ( prop in orig ) {
|
||
jQuery.style( elem, prop, orig[ prop ] );
|
||
}
|
||
});
|
||
for ( index = 0 ; index < length ; index++ ) {
|
||
prop = handled[ index ];
|
||
tween = anim.createTween( prop, hidden ? dataShow[ prop ] : 0 );
|
||
orig[ prop ] = dataShow[ prop ] || jQuery.style( elem, prop );
|
||
|
||
if ( !( prop in dataShow ) ) {
|
||
dataShow[ prop ] = tween.start;
|
||
if ( hidden ) {
|
||
tween.end = tween.start;
|
||
tween.start = prop === "width" || prop === "height" ? 1 : 0;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
function Tween( elem, options, prop, end, easing ) {
|
||
return new Tween.prototype.init( elem, options, prop, end, easing );
|
||
}
|
||
jQuery.Tween = Tween;
|
||
|
||
Tween.prototype = {
|
||
constructor: Tween,
|
||
init: function( elem, options, prop, end, easing, unit ) {
|
||
this.elem = elem;
|
||
this.prop = prop;
|
||
this.easing = easing || "swing";
|
||
this.options = options;
|
||
this.start = this.now = this.cur();
|
||
this.end = end;
|
||
this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
|
||
},
|
||
cur: function() {
|
||
var hooks = Tween.propHooks[ this.prop ];
|
||
|
||
return hooks && hooks.get ?
|
||
hooks.get( this ) :
|
||
Tween.propHooks._default.get( this );
|
||
},
|
||
run: function( percent ) {
|
||
var eased,
|
||
hooks = Tween.propHooks[ this.prop ];
|
||
|
||
if ( this.options.duration ) {
|
||
this.pos = eased = jQuery.easing[ this.easing ](
|
||
percent, this.options.duration * percent, 0, 1, this.options.duration
|
||
);
|
||
} else {
|
||
this.pos = eased = percent;
|
||
}
|
||
this.now = ( this.end - this.start ) * eased + this.start;
|
||
|
||
if ( this.options.step ) {
|
||
this.options.step.call( this.elem, this.now, this );
|
||
}
|
||
|
||
if ( hooks && hooks.set ) {
|
||
hooks.set( this );
|
||
} else {
|
||
Tween.propHooks._default.set( this );
|
||
}
|
||
return this;
|
||
}
|
||
};
|
||
|
||
Tween.prototype.init.prototype = Tween.prototype;
|
||
|
||
Tween.propHooks = {
|
||
_default: {
|
||
get: function( tween ) {
|
||
var result;
|
||
|
||
if ( tween.elem[ tween.prop ] != null &&
|
||
(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
|
||
return tween.elem[ tween.prop ];
|
||
}
|
||
|
||
// passing any value as a 4th parameter to .css will automatically
|
||
// attempt a parseFloat and fallback to a string if the parse fails
|
||
// so, simple values such as "10px" are parsed to Float.
|
||
// complex values such as "rotate(1rad)" are returned as is.
|
||
result = jQuery.css( tween.elem, tween.prop, false, "" );
|
||
// Empty strings, null, undefined and "auto" are converted to 0.
|
||
return !result || result === "auto" ? 0 : result;
|
||
},
|
||
set: function( tween ) {
|
||
// use step hook for back compat - use cssHook if its there - use .style if its
|
||
// available and use plain properties where available
|
||
if ( jQuery.fx.step[ tween.prop ] ) {
|
||
jQuery.fx.step[ tween.prop ]( tween );
|
||
} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
|
||
jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
|
||
} else {
|
||
tween.elem[ tween.prop ] = tween.now;
|
||
}
|
||
}
|
||
}
|
||
};
|
||
|
||
// Remove in 2.0 - this supports IE8's panic based approach
|
||
// to setting things on disconnected nodes
|
||
|
||
Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
|
||
set: function( tween ) {
|
||
if ( tween.elem.nodeType && tween.elem.parentNode ) {
|
||
tween.elem[ tween.prop ] = tween.now;
|
||
}
|
||
}
|
||
};
|
||
|
||
jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
|
||
var cssFn = jQuery.fn[ name ];
|
||
jQuery.fn[ name ] = function( speed, easing, callback ) {
|
||
return speed == null || typeof speed === "boolean" ||
|
||
// special check for .toggle( handler, handler, ... )
|
||
( !i && jQuery.isFunction( speed ) && jQuery.isFunction( easing ) ) ?
|
||
cssFn.apply( this, arguments ) :
|
||
this.animate( genFx( name, true ), speed, easing, callback );
|
||
};
|
||
});
|
||
|
||
jQuery.fn.extend({
|
||
fadeTo: function( speed, to, easing, callback ) {
|
||
|
||
// show any hidden elements after setting opacity to 0
|
||
return this.filter( isHidden ).css( "opacity", 0 ).show()
|
||
|
||
// animate to the value specified
|
||
.end().animate({ opacity: to }, speed, easing, callback );
|
||
},
|
||
animate: function( prop, speed, easing, callback ) {
|
||
var empty = jQuery.isEmptyObject( prop ),
|
||
optall = jQuery.speed( speed, easing, callback ),
|
||
doAnimation = function() {
|
||
// Operate on a copy of prop so per-property easing won't be lost
|
||
var anim = Animation( this, jQuery.extend( {}, prop ), optall );
|
||
|
||
// Empty animations resolve immediately
|
||
if ( empty ) {
|
||
anim.stop( true );
|
||
}
|
||
};
|
||
|
||
return empty || optall.queue === false ?
|
||
this.each( doAnimation ) :
|
||
this.queue( optall.queue, doAnimation );
|
||
},
|
||
stop: function( type, clearQueue, gotoEnd ) {
|
||
var stopQueue = function( hooks ) {
|
||
var stop = hooks.stop;
|
||
delete hooks.stop;
|
||
stop( gotoEnd );
|
||
};
|
||
|
||
if ( typeof type !== "string" ) {
|
||
gotoEnd = clearQueue;
|
||
clearQueue = type;
|
||
type = undefined;
|
||
}
|
||
if ( clearQueue && type !== false ) {
|
||
this.queue( type || "fx", [] );
|
||
}
|
||
|
||
return this.each(function() {
|
||
var dequeue = true,
|
||
index = type != null && type + "queueHooks",
|
||
timers = jQuery.timers,
|
||
data = jQuery._data( this );
|
||
|
||
if ( index ) {
|
||
if ( data[ index ] && data[ index ].stop ) {
|
||
stopQueue( data[ index ] );
|
||
}
|
||
} else {
|
||
for ( index in data ) {
|
||
if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
|
||
stopQueue( data[ index ] );
|
||
}
|
||
}
|
||
}
|
||
|
||
for ( index = timers.length; index--; ) {
|
||
if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
|
||
timers[ index ].anim.stop( gotoEnd );
|
||
dequeue = false;
|
||
timers.splice( index, 1 );
|
||
}
|
||
}
|
||
|
||
// start the next in the queue if the last step wasn't forced
|
||
// timers currently will call their complete callbacks, which will dequeue
|
||
// but only if they were gotoEnd
|
||
if ( dequeue || !gotoEnd ) {
|
||
jQuery.dequeue( this, type );
|
||
}
|
||
});
|
||
}
|
||
});
|
||
|
||
// Generate parameters to create a standard animation
|
||
function genFx( type, includeWidth ) {
|
||
var which,
|
||
attrs = { height: type },
|
||
i = 0;
|
||
|
||
// if we include width, step value is 1 to do all cssExpand values,
|
||
// if we don't include width, step value is 2 to skip over Left and Right
|
||
includeWidth = includeWidth? 1 : 0;
|
||
for( ; i < 4 ; i += 2 - includeWidth ) {
|
||
which = cssExpand[ i ];
|
||
attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
|
||
}
|
||
|
||
if ( includeWidth ) {
|
||
attrs.opacity = attrs.width = type;
|
||
}
|
||
|
||
return attrs;
|
||
}
|
||
|
||
// Generate shortcuts for custom animations
|
||
jQuery.each({
|
||
slideDown: genFx("show"),
|
||
slideUp: genFx("hide"),
|
||
slideToggle: genFx("toggle"),
|
||
fadeIn: { opacity: "show" },
|
||
fadeOut: { opacity: "hide" },
|
||
fadeToggle: { opacity: "toggle" }
|
||
}, function( name, props ) {
|
||
jQuery.fn[ name ] = function( speed, easing, callback ) {
|
||
return this.animate( props, speed, easing, callback );
|
||
};
|
||
});
|
||
|
||
jQuery.speed = function( speed, easing, fn ) {
|
||
var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
|
||
complete: fn || !fn && easing ||
|
||
jQuery.isFunction( speed ) && speed,
|
||
duration: speed,
|
||
easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
|
||
};
|
||
|
||
opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
|
||
opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
|
||
|
||
// normalize opt.queue - true/undefined/null -> "fx"
|
||
if ( opt.queue == null || opt.queue === true ) {
|
||
opt.queue = "fx";
|
||
}
|
||
|
||
// Queueing
|
||
opt.old = opt.complete;
|
||
|
||
opt.complete = function() {
|
||
if ( jQuery.isFunction( opt.old ) ) {
|
||
opt.old.call( this );
|
||
}
|
||
|
||
if ( opt.queue ) {
|
||
jQuery.dequeue( this, opt.queue );
|
||
}
|
||
};
|
||
|
||
return opt;
|
||
};
|
||
|
||
jQuery.easing = {
|
||
linear: function( p ) {
|
||
return p;
|
||
},
|
||
swing: function( p ) {
|
||
return 0.5 - Math.cos( p*Math.PI ) / 2;
|
||
}
|
||
};
|
||
|
||
jQuery.timers = [];
|
||
jQuery.fx = Tween.prototype.init;
|
||
jQuery.fx.tick = function() {
|
||
var timer,
|
||
timers = jQuery.timers,
|
||
i = 0;
|
||
|
||
fxNow = jQuery.now();
|
||
|
||
for ( ; i < timers.length; i++ ) {
|
||
timer = timers[ i ];
|
||
// Checks the timer has not already been removed
|
||
if ( !timer() && timers[ i ] === timer ) {
|
||
timers.splice( i--, 1 );
|
||
}
|
||
}
|
||
|
||
if ( !timers.length ) {
|
||
jQuery.fx.stop();
|
||
}
|
||
fxNow = undefined;
|
||
};
|
||
|
||
jQuery.fx.timer = function( timer ) {
|
||
if ( timer() && jQuery.timers.push( timer ) && !timerId ) {
|
||
timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
|
||
}
|
||
};
|
||
|
||
jQuery.fx.interval = 13;
|
||
|
||
jQuery.fx.stop = function() {
|
||
clearInterval( timerId );
|
||
timerId = null;
|
||
};
|
||
|
||
jQuery.fx.speeds = {
|
||
slow: 600,
|
||
fast: 200,
|
||
// Default speed
|
||
_default: 400
|
||
};
|
||
|
||
// Back Compat <1.8 extension point
|
||
jQuery.fx.step = {};
|
||
|
||
if ( jQuery.expr && jQuery.expr.filters ) {
|
||
jQuery.expr.filters.animated = function( elem ) {
|
||
return jQuery.grep(jQuery.timers, function( fn ) {
|
||
return elem === fn.elem;
|
||
}).length;
|
||
};
|
||
}
|
||
var rroot = /^(?:body|html)$/i;
|
||
|
||
jQuery.fn.offset = function( options ) {
|
||
if ( arguments.length ) {
|
||
return options === undefined ?
|
||
this :
|
||
this.each(function( i ) {
|
||
jQuery.offset.setOffset( this, options, i );
|
||
});
|
||
}
|
||
|
||
var docElem, body, win, clientTop, clientLeft, scrollTop, scrollLeft,
|
||
box = { top: 0, left: 0 },
|
||
elem = this[ 0 ],
|
||
doc = elem && elem.ownerDocument;
|
||
|
||
if ( !doc ) {
|
||
return;
|
||
}
|
||
|
||
if ( (body = doc.body) === elem ) {
|
||
return jQuery.offset.bodyOffset( elem );
|
||
}
|
||
|
||
docElem = doc.documentElement;
|
||
|
||
// Make sure it's not a disconnected DOM node
|
||
if ( !jQuery.contains( docElem, elem ) ) {
|
||
return box;
|
||
}
|
||
|
||
// If we don't have gBCR, just use 0,0 rather than error
|
||
// BlackBerry 5, iOS 3 (original iPhone)
|
||
if ( typeof elem.getBoundingClientRect !== "undefined" ) {
|
||
box = elem.getBoundingClientRect();
|
||
}
|
||
win = getWindow( doc );
|
||
clientTop = docElem.clientTop || body.clientTop || 0;
|
||
clientLeft = docElem.clientLeft || body.clientLeft || 0;
|
||
scrollTop = win.pageYOffset || docElem.scrollTop;
|
||
scrollLeft = win.pageXOffset || docElem.scrollLeft;
|
||
return {
|
||
top: box.top + scrollTop - clientTop,
|
||
left: box.left + scrollLeft - clientLeft
|
||
};
|
||
};
|
||
|
||
jQuery.offset = {
|
||
|
||
bodyOffset: function( body ) {
|
||
var top = body.offsetTop,
|
||
left = body.offsetLeft;
|
||
|
||
if ( jQuery.support.doesNotIncludeMarginInBodyOffset ) {
|
||
top += parseFloat( jQuery.css(body, "marginTop") ) || 0;
|
||
left += parseFloat( jQuery.css(body, "marginLeft") ) || 0;
|
||
}
|
||
|
||
return { top: top, left: left };
|
||
},
|
||
|
||
setOffset: function( elem, options, i ) {
|
||
var position = jQuery.css( elem, "position" );
|
||
|
||
// set position first, in-case top/left are set even on static elem
|
||
if ( position === "static" ) {
|
||
elem.style.position = "relative";
|
||
}
|
||
|
||
var curElem = jQuery( elem ),
|
||
curOffset = curElem.offset(),
|
||
curCSSTop = jQuery.css( elem, "top" ),
|
||
curCSSLeft = jQuery.css( elem, "left" ),
|
||
calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1,
|
||
props = {}, curPosition = {}, curTop, curLeft;
|
||
|
||
// need to be able to calculate position if either top or left is auto and position is either absolute or fixed
|
||
if ( calculatePosition ) {
|
||
curPosition = curElem.position();
|
||
curTop = curPosition.top;
|
||
curLeft = curPosition.left;
|
||
} else {
|
||
curTop = parseFloat( curCSSTop ) || 0;
|
||
curLeft = parseFloat( curCSSLeft ) || 0;
|
||
}
|
||
|
||
if ( jQuery.isFunction( options ) ) {
|
||
options = options.call( elem, i, curOffset );
|
||
}
|
||
|
||
if ( options.top != null ) {
|
||
props.top = ( options.top - curOffset.top ) + curTop;
|
||
}
|
||
if ( options.left != null ) {
|
||
props.left = ( options.left - curOffset.left ) + curLeft;
|
||
}
|
||
|
||
if ( "using" in options ) {
|
||
options.using.call( elem, props );
|
||
} else {
|
||
curElem.css( props );
|
||
}
|
||
}
|
||
};
|
||
|
||
|
||
jQuery.fn.extend({
|
||
|
||
position: function() {
|
||
if ( !this[0] ) {
|
||
return;
|
||
}
|
||
|
||
var elem = this[0],
|
||
|
||
// Get *real* offsetParent
|
||
offsetParent = this.offsetParent(),
|
||
|
||
// Get correct offsets
|
||
offset = this.offset(),
|
||
parentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset();
|
||
|
||
// Subtract element margins
|
||
// note: when an element has margin: auto the offsetLeft and marginLeft
|
||
// are the same in Safari causing offset.left to incorrectly be 0
|
||
offset.top -= parseFloat( jQuery.css(elem, "marginTop") ) || 0;
|
||
offset.left -= parseFloat( jQuery.css(elem, "marginLeft") ) || 0;
|
||
|
||
// Add offsetParent borders
|
||
parentOffset.top += parseFloat( jQuery.css(offsetParent[0], "borderTopWidth") ) || 0;
|
||
parentOffset.left += parseFloat( jQuery.css(offsetParent[0], "borderLeftWidth") ) || 0;
|
||
|
||
// Subtract the two offsets
|
||
return {
|
||
top: offset.top - parentOffset.top,
|
||
left: offset.left - parentOffset.left
|
||
};
|
||
},
|
||
|
||
offsetParent: function() {
|
||
return this.map(function() {
|
||
var offsetParent = this.offsetParent || document.body;
|
||
while ( offsetParent && (!rroot.test(offsetParent.nodeName) && jQuery.css(offsetParent, "position") === "static") ) {
|
||
offsetParent = offsetParent.offsetParent;
|
||
}
|
||
return offsetParent || document.body;
|
||
});
|
||
}
|
||
});
|
||
|
||
|
||
// Create scrollLeft and scrollTop methods
|
||
jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) {
|
||
var top = /Y/.test( prop );
|
||
|
||
jQuery.fn[ method ] = function( val ) {
|
||
return jQuery.access( this, function( elem, method, val ) {
|
||
var win = getWindow( elem );
|
||
|
||
if ( val === undefined ) {
|
||
return win ? (prop in win) ? win[ prop ] :
|
||
win.document.documentElement[ method ] :
|
||
elem[ method ];
|
||
}
|
||
|
||
if ( win ) {
|
||
win.scrollTo(
|
||
!top ? val : jQuery( win ).scrollLeft(),
|
||
top ? val : jQuery( win ).scrollTop()
|
||
);
|
||
|
||
} else {
|
||
elem[ method ] = val;
|
||
}
|
||
}, method, val, arguments.length, null );
|
||
};
|
||
});
|
||
|
||
function getWindow( elem ) {
|
||
return jQuery.isWindow( elem ) ?
|
||
elem :
|
||
elem.nodeType === 9 ?
|
||
elem.defaultView || elem.parentWindow :
|
||
false;
|
||
}
|
||
// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
|
||
jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
||
jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
|
||
// margin is only for outerHeight, outerWidth
|
||
jQuery.fn[ funcName ] = function( margin, value ) {
|
||
var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
|
||
extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
|
||
|
||
return jQuery.access( this, function( elem, type, value ) {
|
||
var doc;
|
||
|
||
if ( jQuery.isWindow( elem ) ) {
|
||
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
|
||
// isn't a whole lot we can do. See pull request at this URL for discussion:
|
||
// https://github.com/jquery/jquery/pull/764
|
||
return elem.document.documentElement[ "client" + name ];
|
||
}
|
||
|
||
// Get document width or height
|
||
if ( elem.nodeType === 9 ) {
|
||
doc = elem.documentElement;
|
||
|
||
// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest
|
||
// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.
|
||
return Math.max(
|
||
elem.body[ "scroll" + name ], doc[ "scroll" + name ],
|
||
elem.body[ "offset" + name ], doc[ "offset" + name ],
|
||
doc[ "client" + name ]
|
||
);
|
||
}
|
||
|
||
return value === undefined ?
|
||
// Get width or height on the element, requesting but not forcing parseFloat
|
||
jQuery.css( elem, type, value, extra ) :
|
||
|
||
// Set width or height on the element
|
||
jQuery.style( elem, type, value, extra );
|
||
}, type, chainable ? margin : undefined, chainable, null );
|
||
};
|
||
});
|
||
});
|
||
// Expose jQuery to the global object
|
||
window.jQuery = window.$ = jQuery;
|
||
|
||
// Expose jQuery as an AMD module, but only for AMD loaders that
|
||
// understand the issues with loading multiple versions of jQuery
|
||
// in a page that all might call define(). The loader will indicate
|
||
// they have special allowances for multiple jQuery versions by
|
||
// specifying define.amd.jQuery = true. Register as a named module,
|
||
// since jQuery can be concatenated with other files that may use define,
|
||
// but not use a proper concatenation script that understands anonymous
|
||
// AMD modules. A named AMD is safest and most robust way to register.
|
||
// Lowercase jquery is used because AMD module names are derived from
|
||
// file names, and jQuery is normally delivered in a lowercase file name.
|
||
// Do this after creating the global so that if an AMD module wants to call
|
||
// noConflict to hide this version of jQuery, it will work.
|
||
if ( typeof define === "function" && define.amd && define.amd.jQuery ) {
|
||
define( "jquery", [], function () { return jQuery; } );
|
||
}
|
||
|
||
})( window );
|
||
;/**
|
||
* Ajax Queue Plugin
|
||
*
|
||
* Homepage: http://jquery.com/plugins/project/ajaxqueue
|
||
* Documentation: http://docs.jquery.com/AjaxQueue
|
||
*/
|
||
|
||
/**
|
||
|
||
<script>
|
||
$(function(){
|
||
jQuery.ajaxQueue({
|
||
url: "test.php",
|
||
success: function(html){ jQuery("ul").append(html); }
|
||
});
|
||
jQuery.ajaxQueue({
|
||
url: "test.php",
|
||
success: function(html){ jQuery("ul").append(html); }
|
||
});
|
||
jQuery.ajaxSync({
|
||
url: "test.php",
|
||
success: function(html){ jQuery("ul").append("<b>"+html+"</b>"); }
|
||
});
|
||
jQuery.ajaxSync({
|
||
url: "test.php",
|
||
success: function(html){ jQuery("ul").append("<b>"+html+"</b>"); }
|
||
});
|
||
});
|
||
</script>
|
||
<ul style="position: absolute; top: 5px; right: 5px;"></ul>
|
||
|
||
*/
|
||
/*
|
||
* Queued Ajax requests.
|
||
* A new Ajax request won't be started until the previous queued
|
||
* request has finished.
|
||
*/
|
||
|
||
/*
|
||
* Synced Ajax requests.
|
||
* The Ajax request will happen as soon as you call this method, but
|
||
* the callbacks (success/error/complete) won't fire until all previous
|
||
* synced requests have been completed.
|
||
*/
|
||
|
||
|
||
(function($) {
|
||
|
||
var ajax = $.ajax;
|
||
|
||
var pendingRequests = {};
|
||
|
||
var synced = [];
|
||
var syncedData = [];
|
||
|
||
$.ajax = function(settings) {
|
||
// create settings for compatibility with ajaxSetup
|
||
settings = jQuery.extend(settings, jQuery.extend({}, jQuery.ajaxSettings, settings));
|
||
|
||
var port = settings.port;
|
||
|
||
switch(settings.mode) {
|
||
case "abort":
|
||
if ( pendingRequests[port] ) {
|
||
pendingRequests[port].abort();
|
||
}
|
||
return pendingRequests[port] = ajax.apply(this, arguments);
|
||
case "queue":
|
||
var _old = settings.complete;
|
||
settings.complete = function(){
|
||
if ( _old )
|
||
_old.apply( this, arguments );
|
||
jQuery([ajax]).dequeue("ajax" + port );;
|
||
};
|
||
|
||
jQuery([ ajax ]).queue("ajax" + port, function(){
|
||
ajax( settings );
|
||
});
|
||
return;
|
||
case "sync":
|
||
var pos = synced.length;
|
||
|
||
synced[ pos ] = {
|
||
error: settings.error,
|
||
success: settings.success,
|
||
complete: settings.complete,
|
||
done: false
|
||
};
|
||
|
||
syncedData[ pos ] = {
|
||
error: [],
|
||
success: [],
|
||
complete: []
|
||
};
|
||
|
||
settings.error = function(){ syncedData[ pos ].error = arguments; };
|
||
settings.success = function(){ syncedData[ pos ].success = arguments; };
|
||
settings.complete = function(){
|
||
syncedData[ pos ].complete = arguments;
|
||
synced[ pos ].done = true;
|
||
|
||
if ( pos == 0 || !synced[ pos-1 ] )
|
||
for ( var i = pos; i < synced.length && synced[i].done; i++ ) {
|
||
if ( synced[i].error ) synced[i].error.apply( jQuery, syncedData[i].error );
|
||
if ( synced[i].success ) synced[i].success.apply( jQuery, syncedData[i].success );
|
||
if ( synced[i].complete ) synced[i].complete.apply( jQuery, syncedData[i].complete );
|
||
|
||
synced[i] = null;
|
||
syncedData[i] = null;
|
||
}
|
||
};
|
||
}
|
||
return ajax.apply(this, arguments);
|
||
};
|
||
|
||
})(jQuery);;/*
|
||
* Autocomplete - jQuery plugin 1.0.2
|
||
*
|
||
* Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
|
||
*
|
||
* Dual licensed under the MIT and GPL licenses:
|
||
* http://www.opensource.org/licenses/mit-license.php
|
||
* http://www.gnu.org/licenses/gpl.html
|
||
*
|
||
* Revision: $Id: jquery.autocomplete.js 5747 2008-06-25 18:30:55Z joern.zaefferer $
|
||
*
|
||
*/
|
||
|
||
;(function($) {
|
||
|
||
$.fn.extend({
|
||
autocomplete: function(urlOrData, options) {
|
||
var isUrl = typeof urlOrData == "string";
|
||
options = $.extend({}, $.Autocompleter.defaults, {
|
||
url: isUrl ? urlOrData : null,
|
||
data: isUrl ? null : urlOrData,
|
||
delay: isUrl ? $.Autocompleter.defaults.delay : 10,
|
||
max: options && !options.scroll ? 10 : 150
|
||
}, options);
|
||
|
||
// if highlight is set to false, replace it with a do-nothing function
|
||
options.highlight = options.highlight || function(value) { return value; };
|
||
|
||
// if the formatMatch option is not specified, then use formatItem for backwards compatibility
|
||
options.formatMatch = options.formatMatch || options.formatItem;
|
||
|
||
return this.each(function() {
|
||
new $.Autocompleter(this, options);
|
||
});
|
||
},
|
||
result: function(handler) {
|
||
return this.bind("result", handler);
|
||
},
|
||
search: function(handler) {
|
||
return this.trigger("search", [handler]);
|
||
},
|
||
flushCache: function() {
|
||
return this.trigger("flushCache");
|
||
},
|
||
setOptions: function(options){
|
||
return this.trigger("setOptions", [options]);
|
||
},
|
||
unautocomplete: function() {
|
||
return this.trigger("unautocomplete");
|
||
}
|
||
});
|
||
|
||
$.Autocompleter = function(input, options) {
|
||
|
||
var KEY = {
|
||
UP: 38,
|
||
DOWN: 40,
|
||
DEL: 46,
|
||
TAB: 9,
|
||
RETURN: 13,
|
||
ESC: 27,
|
||
COMMA: 188,
|
||
PAGEUP: 33,
|
||
PAGEDOWN: 34,
|
||
BACKSPACE: 8
|
||
};
|
||
|
||
// Create $ object for input element
|
||
var $input = $(input).attr("autocomplete", "off").addClass(options.inputClass);
|
||
|
||
var timeout;
|
||
var previousValue = "";
|
||
var cache = $.Autocompleter.Cache(options);
|
||
var hasFocus = 0;
|
||
var lastKeyPressCode;
|
||
var config = {
|
||
mouseDownOnSelect: false
|
||
};
|
||
var select = $.Autocompleter.Select(options, input, selectCurrent, config);
|
||
|
||
var blockSubmit;
|
||
|
||
// prevent form submit in opera when selecting with return key
|
||
$.browser.opera && $(input.form).bind("submit.autocomplete", function() {
|
||
if (blockSubmit) {
|
||
blockSubmit = false;
|
||
return false;
|
||
}
|
||
});
|
||
|
||
// only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all
|
||
$input.bind(($.browser.opera ? "keypress" : "keydown") + ".autocomplete", function(event) {
|
||
// track last key pressed
|
||
lastKeyPressCode = event.keyCode;
|
||
switch(event.keyCode) {
|
||
|
||
case KEY.UP:
|
||
event.preventDefault();
|
||
if ( select.visible() ) {
|
||
select.prev();
|
||
} else {
|
||
onChange(0, true);
|
||
}
|
||
break;
|
||
|
||
case KEY.DOWN:
|
||
event.preventDefault();
|
||
if ( select.visible() ) {
|
||
select.next();
|
||
} else {
|
||
onChange(0, true);
|
||
}
|
||
break;
|
||
|
||
case KEY.PAGEUP:
|
||
event.preventDefault();
|
||
if ( select.visible() ) {
|
||
select.pageUp();
|
||
} else {
|
||
onChange(0, true);
|
||
}
|
||
break;
|
||
|
||
case KEY.PAGEDOWN:
|
||
event.preventDefault();
|
||
if ( select.visible() ) {
|
||
select.pageDown();
|
||
} else {
|
||
onChange(0, true);
|
||
}
|
||
break;
|
||
|
||
// matches also semicolon
|
||
case options.multiple && $.trim(options.multipleSeparator) == "," && KEY.COMMA:
|
||
case KEY.TAB:
|
||
case KEY.RETURN:
|
||
if( selectCurrent() ) {
|
||
// stop default to prevent a form submit, Opera needs special handling
|
||
event.preventDefault();
|
||
blockSubmit = true;
|
||
return false;
|
||
}
|
||
break;
|
||
|
||
case KEY.ESC:
|
||
select.hide();
|
||
break;
|
||
|
||
default:
|
||
clearTimeout(timeout);
|
||
timeout = setTimeout(onChange, options.delay);
|
||
break;
|
||
}
|
||
}).focus(function(){
|
||
// track whether the field has focus, we shouldn't process any
|
||
// results if the field no longer has focus
|
||
hasFocus++;
|
||
}).blur(function() {
|
||
hasFocus = 0;
|
||
if (!config.mouseDownOnSelect) {
|
||
hideResults();
|
||
}
|
||
}).click(function() {
|
||
// show select when clicking in a focused field
|
||
if ( hasFocus++ > 1 && !select.visible() ) {
|
||
onChange(0, true);
|
||
}
|
||
}).bind("search", function() {
|
||
// TODO why not just specifying both arguments?
|
||
var fn = (arguments.length > 1) ? arguments[1] : null;
|
||
function findValueCallback(q, data) {
|
||
var result;
|
||
if( data && data.length ) {
|
||
for (var i=0; i < data.length; i++) {
|
||
if( data[i].result.toLowerCase() == q.toLowerCase() ) {
|
||
result = data[i];
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
if( typeof fn == "function" ) fn(result);
|
||
else $input.trigger("result", result && [result.data, result.value]);
|
||
}
|
||
$.each(trimWords($input.val()), function(i, value) {
|
||
request(value, findValueCallback, findValueCallback);
|
||
});
|
||
}).bind("flushCache", function() {
|
||
cache.flush();
|
||
}).bind("setOptions", function() {
|
||
$.extend(options, arguments[1]);
|
||
// if we've updated the data, repopulate
|
||
if ( "data" in arguments[1] )
|
||
cache.populate();
|
||
}).bind("unautocomplete", function() {
|
||
select.unbind();
|
||
$input.unbind();
|
||
$(input.form).unbind(".autocomplete");
|
||
});
|
||
|
||
|
||
function selectCurrent() {
|
||
var selected = select.selected();
|
||
if( !selected )
|
||
return false;
|
||
|
||
var v = selected.result;
|
||
previousValue = v;
|
||
|
||
if ( options.multiple ) {
|
||
var words = trimWords($input.val());
|
||
if ( words.length > 1 ) {
|
||
v = words.slice(0, words.length - 1).join( options.multipleSeparator ) + options.multipleSeparator + v;
|
||
}
|
||
v += options.multipleSeparator;
|
||
}
|
||
|
||
$input.val(v);
|
||
hideResultsNow();
|
||
$input.trigger("result", [selected.data, selected.value]);
|
||
return true;
|
||
}
|
||
|
||
function onChange(crap, skipPrevCheck) {
|
||
if( lastKeyPressCode == KEY.DEL ) {
|
||
select.hide();
|
||
return;
|
||
}
|
||
|
||
var currentValue = $input.val();
|
||
|
||
if ( !skipPrevCheck && currentValue == previousValue )
|
||
return;
|
||
|
||
previousValue = currentValue;
|
||
|
||
currentValue = lastWord(currentValue);
|
||
if ( currentValue.length >= options.minChars) {
|
||
$input.addClass(options.loadingClass);
|
||
if (!options.matchCase)
|
||
currentValue = currentValue.toLowerCase();
|
||
request(currentValue, receiveData, hideResultsNow);
|
||
} else {
|
||
stopLoading();
|
||
select.hide();
|
||
}
|
||
};
|
||
|
||
function trimWords(value) {
|
||
if ( !value ) {
|
||
return [""];
|
||
}
|
||
var words = value.split( options.multipleSeparator );
|
||
var result = [];
|
||
$.each(words, function(i, value) {
|
||
if ( $.trim(value) )
|
||
result[i] = $.trim(value);
|
||
});
|
||
return result;
|
||
}
|
||
|
||
function lastWord(value) {
|
||
if ( !options.multiple )
|
||
return value;
|
||
var words = trimWords(value);
|
||
return words[words.length - 1];
|
||
}
|
||
|
||
// fills in the input box w/the first match (assumed to be the best match)
|
||
// q: the term entered
|
||
// sValue: the first matching result
|
||
function autoFill(q, sValue){
|
||
// autofill in the complete box w/the first match as long as the user hasn't entered in more data
|
||
// if the last user key pressed was backspace, don't autofill
|
||
if( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) {
|
||
// fill in the value (keep the case the user has typed)
|
||
$input.val($input.val() + sValue.substring(lastWord(previousValue).length));
|
||
// select the portion of the value not typed by the user (so the next character will erase)
|
||
$.Autocompleter.Selection(input, previousValue.length, previousValue.length + sValue.length);
|
||
}
|
||
};
|
||
|
||
function hideResults() {
|
||
clearTimeout(timeout);
|
||
timeout = setTimeout(hideResultsNow, 200);
|
||
};
|
||
|
||
function hideResultsNow() {
|
||
var wasVisible = select.visible();
|
||
select.hide();
|
||
clearTimeout(timeout);
|
||
stopLoading();
|
||
if (options.mustMatch) {
|
||
// call search and run callback
|
||
$input.search(
|
||
function (result){
|
||
// if no value found, clear the input box
|
||
if( !result ) {
|
||
if (options.multiple) {
|
||
var words = trimWords($input.val()).slice(0, -1);
|
||
$input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : "") );
|
||
}
|
||
else
|
||
$input.val( "" );
|
||
}
|
||
}
|
||
);
|
||
}
|
||
if (wasVisible)
|
||
// position cursor at end of input field
|
||
$.Autocompleter.Selection(input, input.value.length, input.value.length);
|
||
};
|
||
|
||
function receiveData(q, data) {
|
||
if ( data && data.length && hasFocus ) {
|
||
stopLoading();
|
||
select.display(data, q);
|
||
autoFill(q, data[0].value);
|
||
select.show();
|
||
} else {
|
||
hideResultsNow();
|
||
}
|
||
};
|
||
|
||
function request(term, success, failure) {
|
||
if (!options.matchCase)
|
||
term = term.toLowerCase();
|
||
var data = cache.load(term);
|
||
// recieve the cached data
|
||
if (data && data.length) {
|
||
success(term, data);
|
||
// if an AJAX url has been supplied, try loading the data now
|
||
} else if( (typeof options.url == "string") && (options.url.length > 0) ){
|
||
|
||
var extraParams = {
|
||
timestamp: +new Date()
|
||
};
|
||
$.each(options.extraParams, function(key, param) {
|
||
extraParams[key] = typeof param == "function" ? param() : param;
|
||
});
|
||
|
||
// don't add q parameter (won't work for nomantim)
|
||
var data = typeof options.extraParams == "function" ?
|
||
$.extend({}, options.extraParams()) : $.extend({
|
||
q: lastWord(term),
|
||
limit: options.max
|
||
}, extraParams);
|
||
|
||
$.ajax({
|
||
// try to leverage ajaxQueue plugin to abort previous requests
|
||
mode: "abort",
|
||
// limit abortion to this input
|
||
port: "autocomplete" + input.name,
|
||
dataType: options.dataType,
|
||
url: options.url,
|
||
type: options.type || "POST",
|
||
data: data,
|
||
success: function(data) {
|
||
var parsed = options.parse && options.parse(data) || parse(data);
|
||
cache.add(term, parsed);
|
||
success(term, parsed);
|
||
}
|
||
});
|
||
} else {
|
||
// if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match
|
||
select.emptyList();
|
||
failure(term);
|
||
}
|
||
};
|
||
|
||
function parse(data) {
|
||
var parsed = [];
|
||
var rows = data.split("\n");
|
||
for (var i=0; i < rows.length; i++) {
|
||
var row = $.trim(rows[i]);
|
||
if (row) {
|
||
row = row.split("|");
|
||
parsed[parsed.length] = {
|
||
data: row,
|
||
value: row[0],
|
||
result: options.formatResult && options.formatResult(row, row[0]) || row[0]
|
||
};
|
||
}
|
||
}
|
||
return parsed;
|
||
};
|
||
|
||
function stopLoading() {
|
||
$input.removeClass(options.loadingClass);
|
||
};
|
||
|
||
};
|
||
|
||
$.Autocompleter.defaults = {
|
||
inputClass: "ac_input",
|
||
resultsClass: "ac_results",
|
||
loadingClass: "ac_loading",
|
||
minChars: 1,
|
||
delay: 400,
|
||
matchCase: false,
|
||
matchSubset: true,
|
||
matchContains: false,
|
||
cacheLength: 10,
|
||
max: 100,
|
||
mustMatch: false,
|
||
extraParams: {},
|
||
selectFirst: true,
|
||
formatItem: function(row) { return row[0]; },
|
||
formatMatch: null,
|
||
autoFill: false,
|
||
width: 0,
|
||
multiple: false,
|
||
multipleSeparator: ", ",
|
||
highlight: function(value, term) {
|
||
return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<strong>$1</strong>");
|
||
},
|
||
scroll: true,
|
||
scrollHeight: 180
|
||
};
|
||
|
||
$.Autocompleter.Cache = function(options) {
|
||
|
||
var data = {};
|
||
var length = 0;
|
||
|
||
function matchSubset(s, sub) {
|
||
if (!options.matchCase)
|
||
s = s.toLowerCase();
|
||
var i = s.indexOf(sub);
|
||
if (i == -1) return false;
|
||
return i == 0 || options.matchContains;
|
||
};
|
||
|
||
function add(q, value) {
|
||
if (length > options.cacheLength){
|
||
flush();
|
||
}
|
||
if (!data[q]){
|
||
length++;
|
||
}
|
||
data[q] = value;
|
||
}
|
||
|
||
function populate(){
|
||
if( !options.data ) return false;
|
||
// track the matches
|
||
var stMatchSets = {},
|
||
nullData = 0;
|
||
|
||
// no url was specified, we need to adjust the cache length to make sure it fits the local data store
|
||
if( !options.url ) options.cacheLength = 1;
|
||
|
||
// track all options for minChars = 0
|
||
stMatchSets[""] = [];
|
||
|
||
// loop through the array and create a lookup structure
|
||
for ( var i = 0, ol = options.data.length; i < ol; i++ ) {
|
||
var rawValue = options.data[i];
|
||
// if rawValue is a string, make an array otherwise just reference the array
|
||
rawValue = (typeof rawValue == "string") ? [rawValue] : rawValue;
|
||
|
||
var value = options.formatMatch(rawValue, i+1, options.data.length);
|
||
if ( value === false )
|
||
continue;
|
||
|
||
var firstChar = value.charAt(0).toLowerCase();
|
||
// if no lookup array for this character exists, look it up now
|
||
if( !stMatchSets[firstChar] )
|
||
stMatchSets[firstChar] = [];
|
||
|
||
// if the match is a string
|
||
var row = {
|
||
value: value,
|
||
data: rawValue,
|
||
result: options.formatResult && options.formatResult(rawValue) || value
|
||
};
|
||
|
||
// push the current match into the set list
|
||
stMatchSets[firstChar].push(row);
|
||
|
||
// keep track of minChars zero items
|
||
if ( nullData++ < options.max ) {
|
||
stMatchSets[""].push(row);
|
||
}
|
||
};
|
||
|
||
// add the data items to the cache
|
||
$.each(stMatchSets, function(i, value) {
|
||
// increase the cache size
|
||
options.cacheLength++;
|
||
// add to the cache
|
||
add(i, value);
|
||
});
|
||
}
|
||
|
||
// populate any existing data
|
||
setTimeout(populate, 25);
|
||
|
||
function flush(){
|
||
data = {};
|
||
length = 0;
|
||
}
|
||
|
||
return {
|
||
flush: flush,
|
||
add: add,
|
||
populate: populate,
|
||
load: function(q) {
|
||
if (!options.cacheLength || !length)
|
||
return null;
|
||
/*
|
||
* if dealing w/local data and matchContains than we must make sure
|
||
* to loop through all the data collections looking for matches
|
||
*/
|
||
if( !options.url && options.matchContains ){
|
||
// track all matches
|
||
var csub = [];
|
||
// loop through all the data grids for matches
|
||
for( var k in data ){
|
||
// don't search through the stMatchSets[""] (minChars: 0) cache
|
||
// this prevents duplicates
|
||
if( k.length > 0 ){
|
||
var c = data[k];
|
||
$.each(c, function(i, x) {
|
||
// if we've got a match, add it to the array
|
||
if (matchSubset(x.value, q)) {
|
||
csub.push(x);
|
||
}
|
||
});
|
||
}
|
||
}
|
||
return csub;
|
||
} else
|
||
// if the exact item exists, use it
|
||
if (data[q]){
|
||
return data[q];
|
||
} else
|
||
if (options.matchSubset) {
|
||
for (var i = q.length - 1; i >= options.minChars; i--) {
|
||
var c = data[q.substr(0, i)];
|
||
if (c) {
|
||
var csub = [];
|
||
$.each(c, function(i, x) {
|
||
if (matchSubset(x.value, q)) {
|
||
csub[csub.length] = x;
|
||
}
|
||
});
|
||
return csub;
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
};
|
||
};
|
||
|
||
$.Autocompleter.Select = function (options, input, select, config) {
|
||
var CLASSES = {
|
||
ACTIVE: "ac_over"
|
||
};
|
||
|
||
var listItems,
|
||
active = -1,
|
||
data,
|
||
term = "",
|
||
needsInit = true,
|
||
element,
|
||
list;
|
||
|
||
// Create results
|
||
function init() {
|
||
if (!needsInit)
|
||
return;
|
||
element = $("<div/>")
|
||
.hide()
|
||
.addClass(options.resultsClass)
|
||
.css("position", "absolute")
|
||
.appendTo(document.body);
|
||
|
||
list = $("<ul/>").appendTo(element).mouseover( function(event) {
|
||
if(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') {
|
||
active = $("li", list).removeClass(CLASSES.ACTIVE).index(target(event));
|
||
$(target(event)).addClass(CLASSES.ACTIVE);
|
||
}
|
||
}).click(function(event) {
|
||
$(target(event)).addClass(CLASSES.ACTIVE);
|
||
select();
|
||
// TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus
|
||
input.focus();
|
||
return false;
|
||
}).mousedown(function() {
|
||
config.mouseDownOnSelect = true;
|
||
}).mouseup(function() {
|
||
config.mouseDownOnSelect = false;
|
||
});
|
||
|
||
if( options.width > 0 )
|
||
element.css("width", options.width);
|
||
|
||
needsInit = false;
|
||
}
|
||
|
||
function target(event) {
|
||
var element = event.target;
|
||
while(element && element.tagName != "LI")
|
||
element = element.parentNode;
|
||
// more fun with IE, sometimes event.target is empty, just ignore it then
|
||
if(!element)
|
||
return [];
|
||
return element;
|
||
}
|
||
|
||
function moveSelect(step) {
|
||
listItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE);
|
||
movePosition(step);
|
||
var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE);
|
||
if(options.scroll) {
|
||
var offset = 0;
|
||
listItems.slice(0, active).each(function() {
|
||
offset += this.offsetHeight;
|
||
});
|
||
if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) {
|
||
list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight());
|
||
} else if(offset < list.scrollTop()) {
|
||
list.scrollTop(offset);
|
||
}
|
||
}
|
||
};
|
||
|
||
function movePosition(step) {
|
||
active += step;
|
||
if (active < 0) {
|
||
active = listItems.size() - 1;
|
||
} else if (active >= listItems.size()) {
|
||
active = 0;
|
||
}
|
||
}
|
||
|
||
function limitNumberOfItems(available) {
|
||
return options.max && options.max < available
|
||
? options.max
|
||
: available;
|
||
}
|
||
|
||
function fillList() {
|
||
list.empty();
|
||
var max = limitNumberOfItems(data.length);
|
||
for (var i=0; i < max; i++) {
|
||
if (!data[i])
|
||
continue;
|
||
var formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term);
|
||
if ( formatted === false )
|
||
continue;
|
||
var li = $("<li/>").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? "ac_even" : "ac_odd").appendTo(list)[0];
|
||
$.data(li, "ac_data", data[i]);
|
||
}
|
||
listItems = list.find("li");
|
||
if ( options.selectFirst ) {
|
||
listItems.slice(0, 1).addClass(CLASSES.ACTIVE);
|
||
active = 0;
|
||
}
|
||
// apply bgiframe if available
|
||
if ( $.fn.bgiframe )
|
||
list.bgiframe();
|
||
}
|
||
|
||
return {
|
||
display: function(d, q) {
|
||
init();
|
||
data = d;
|
||
term = q;
|
||
fillList();
|
||
},
|
||
next: function() {
|
||
moveSelect(1);
|
||
},
|
||
prev: function() {
|
||
moveSelect(-1);
|
||
},
|
||
pageUp: function() {
|
||
if (active != 0 && active - 8 < 0) {
|
||
moveSelect( -active );
|
||
} else {
|
||
moveSelect(-8);
|
||
}
|
||
},
|
||
pageDown: function() {
|
||
if (active != listItems.size() - 1 && active + 8 > listItems.size()) {
|
||
moveSelect( listItems.size() - 1 - active );
|
||
} else {
|
||
moveSelect(8);
|
||
}
|
||
},
|
||
hide: function() {
|
||
element && element.hide();
|
||
listItems && listItems.removeClass(CLASSES.ACTIVE);
|
||
active = -1;
|
||
},
|
||
visible : function() {
|
||
return element && element.is(":visible");
|
||
},
|
||
current: function() {
|
||
return this.visible() && (listItems.filter("." + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]);
|
||
},
|
||
show: function() {
|
||
var offset = $(input).offset();
|
||
element.css({
|
||
width: typeof options.width == "string" || options.width > 0 ? options.width : $(input).width(),
|
||
top: offset.top + input.offsetHeight,
|
||
left: offset.left
|
||
}).show();
|
||
if(options.scroll) {
|
||
list.scrollTop(0);
|
||
list.css({
|
||
maxHeight: options.scrollHeight,
|
||
overflow: 'auto'
|
||
});
|
||
|
||
if($.browser.msie && typeof document.body.style.maxHeight === "undefined") {
|
||
var listHeight = 0;
|
||
listItems.each(function() {
|
||
listHeight += this.offsetHeight;
|
||
});
|
||
var scrollbarsVisible = listHeight > options.scrollHeight;
|
||
list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight );
|
||
if (!scrollbarsVisible) {
|
||
// IE doesn't recalculate width when scrollbar disappears
|
||
listItems.width( list.width() - parseInt(listItems.css("padding-left")) - parseInt(listItems.css("padding-right")) );
|
||
}
|
||
}
|
||
|
||
}
|
||
},
|
||
selected: function() {
|
||
var selected = listItems && listItems.filter("." + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);
|
||
return selected && selected.length && $.data(selected[0], "ac_data");
|
||
},
|
||
emptyList: function (){
|
||
list && list.empty();
|
||
},
|
||
unbind: function() {
|
||
element && element.remove();
|
||
}
|
||
};
|
||
};
|
||
|
||
$.Autocompleter.Selection = function(field, start, end) {
|
||
if( field.createTextRange ){
|
||
var selRange = field.createTextRange();
|
||
selRange.collapse(true);
|
||
selRange.moveStart("character", start);
|
||
selRange.moveEnd("character", end);
|
||
selRange.select();
|
||
} else if( field.setSelectionRange ){
|
||
field.setSelectionRange(start, end);
|
||
} else {
|
||
if( field.selectionStart ){
|
||
field.selectionStart = start;
|
||
field.selectionEnd = end;
|
||
}
|
||
}
|
||
field.focus();
|
||
};
|
||
|
||
})(jQuery);;/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
|
||
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
||
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
||
*
|
||
* $LastChangedDate: 2007-07-22 01:45:56 +0200 (Son, 22 Jul 2007) $
|
||
* $Rev: 2447 $
|
||
*
|
||
* Version 2.1.1
|
||
*/
|
||
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&/6.0/.test(navigator.userAgent)){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};})(jQuery);;/*!
|
||
* jQuery Color Animations v@VERSION
|
||
* https://github.com/jquery/jquery-color
|
||
*
|
||
* Copyright jQuery Foundation and other contributors
|
||
* Released under the MIT license.
|
||
* http://jquery.org/license
|
||
*
|
||
* Date: @DATE
|
||
*/
|
||
(function( jQuery, undefined ) {
|
||
|
||
var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",
|
||
|
||
// plusequals test for += 100 -= 100
|
||
rplusequals = /^([\-+])=\s*(\d+\.?\d*)/,
|
||
// a set of RE's that can match strings and generate color tuples.
|
||
stringParsers = [{
|
||
re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
|
||
parse: function( execResult ) {
|
||
return [
|
||
execResult[ 1 ],
|
||
execResult[ 2 ],
|
||
execResult[ 3 ],
|
||
execResult[ 4 ]
|
||
];
|
||
}
|
||
}, {
|
||
re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
|
||
parse: function( execResult ) {
|
||
return [
|
||
execResult[ 1 ] * 2.55,
|
||
execResult[ 2 ] * 2.55,
|
||
execResult[ 3 ] * 2.55,
|
||
execResult[ 4 ]
|
||
];
|
||
}
|
||
}, {
|
||
// this regex ignores A-F because it's compared against an already lowercased string
|
||
re: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,
|
||
parse: function( execResult ) {
|
||
return [
|
||
parseInt( execResult[ 1 ], 16 ),
|
||
parseInt( execResult[ 2 ], 16 ),
|
||
parseInt( execResult[ 3 ], 16 )
|
||
];
|
||
}
|
||
}, {
|
||
// this regex ignores A-F because it's compared against an already lowercased string
|
||
re: /#([a-f0-9])([a-f0-9])([a-f0-9])/,
|
||
parse: function( execResult ) {
|
||
return [
|
||
parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ),
|
||
parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ),
|
||
parseInt( execResult[ 3 ] + execResult[ 3 ], 16 )
|
||
];
|
||
}
|
||
}, {
|
||
re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
|
||
space: "hsla",
|
||
parse: function( execResult ) {
|
||
return [
|
||
execResult[ 1 ],
|
||
execResult[ 2 ] / 100,
|
||
execResult[ 3 ] / 100,
|
||
execResult[ 4 ]
|
||
];
|
||
}
|
||
}],
|
||
|
||
// jQuery.Color( )
|
||
color = jQuery.Color = function( color, green, blue, alpha ) {
|
||
return new jQuery.Color.fn.parse( color, green, blue, alpha );
|
||
},
|
||
spaces = {
|
||
rgba: {
|
||
props: {
|
||
red: {
|
||
idx: 0,
|
||
type: "byte"
|
||
},
|
||
green: {
|
||
idx: 1,
|
||
type: "byte"
|
||
},
|
||
blue: {
|
||
idx: 2,
|
||
type: "byte"
|
||
}
|
||
}
|
||
},
|
||
|
||
hsla: {
|
||
props: {
|
||
hue: {
|
||
idx: 0,
|
||
type: "degrees"
|
||
},
|
||
saturation: {
|
||
idx: 1,
|
||
type: "percent"
|
||
},
|
||
lightness: {
|
||
idx: 2,
|
||
type: "percent"
|
||
}
|
||
}
|
||
}
|
||
},
|
||
propTypes = {
|
||
"byte": {
|
||
floor: true,
|
||
max: 255
|
||
},
|
||
"percent": {
|
||
max: 1
|
||
},
|
||
"degrees": {
|
||
mod: 360,
|
||
floor: true
|
||
}
|
||
},
|
||
support = color.support = {},
|
||
|
||
// element for support tests
|
||
supportElem = jQuery( "<p>" )[ 0 ],
|
||
|
||
// colors = jQuery.Color.names
|
||
colors,
|
||
|
||
// local aliases of functions called often
|
||
each = jQuery.each;
|
||
|
||
// determine rgba support immediately
|
||
supportElem.style.cssText = "background-color:rgba(1,1,1,.5)";
|
||
support.rgba = supportElem.style.backgroundColor.indexOf( "rgba" ) > -1;
|
||
|
||
// define cache name and alpha properties
|
||
// for rgba and hsla spaces
|
||
each( spaces, function( spaceName, space ) {
|
||
space.cache = "_" + spaceName;
|
||
space.props.alpha = {
|
||
idx: 3,
|
||
type: "percent",
|
||
def: 1
|
||
};
|
||
});
|
||
|
||
function clamp( value, prop, allowEmpty ) {
|
||
var type = propTypes[ prop.type ] || {};
|
||
|
||
if ( value == null ) {
|
||
return (allowEmpty || !prop.def) ? null : prop.def;
|
||
}
|
||
|
||
// ~~ is an short way of doing floor for positive numbers
|
||
value = type.floor ? ~~value : parseFloat( value );
|
||
|
||
// IE will pass in empty strings as value for alpha,
|
||
// which will hit this case
|
||
if ( isNaN( value ) ) {
|
||
return prop.def;
|
||
}
|
||
|
||
if ( type.mod ) {
|
||
// we add mod before modding to make sure that negatives values
|
||
// get converted properly: -10 -> 350
|
||
return (value + type.mod) % type.mod;
|
||
}
|
||
|
||
// for now all property types without mod have min and max
|
||
return 0 > value ? 0 : type.max < value ? type.max : value;
|
||
}
|
||
|
||
function stringParse( string ) {
|
||
var inst = color(),
|
||
rgba = inst._rgba = [];
|
||
|
||
string = string.toLowerCase();
|
||
|
||
each( stringParsers, function( i, parser ) {
|
||
var parsed,
|
||
match = parser.re.exec( string ),
|
||
values = match && parser.parse( match ),
|
||
spaceName = parser.space || "rgba";
|
||
|
||
if ( values ) {
|
||
parsed = inst[ spaceName ]( values );
|
||
|
||
// if this was an rgba parse the assignment might happen twice
|
||
// oh well....
|
||
inst[ spaces[ spaceName ].cache ] = parsed[ spaces[ spaceName ].cache ];
|
||
rgba = inst._rgba = parsed._rgba;
|
||
|
||
// exit each( stringParsers ) here because we matched
|
||
return false;
|
||
}
|
||
});
|
||
|
||
// Found a stringParser that handled it
|
||
if ( rgba.length ) {
|
||
|
||
// if this came from a parsed string, force "transparent" when alpha is 0
|
||
// chrome, (and maybe others) return "transparent" as rgba(0,0,0,0)
|
||
if ( rgba.join() === "0,0,0,0" ) {
|
||
jQuery.extend( rgba, colors.transparent );
|
||
}
|
||
return inst;
|
||
}
|
||
|
||
// named colors
|
||
return colors[ string ];
|
||
}
|
||
|
||
color.fn = jQuery.extend( color.prototype, {
|
||
parse: function( red, green, blue, alpha ) {
|
||
if ( red === undefined ) {
|
||
this._rgba = [ null, null, null, null ];
|
||
return this;
|
||
}
|
||
if ( red.jquery || red.nodeType ) {
|
||
red = jQuery( red ).css( green );
|
||
green = undefined;
|
||
}
|
||
|
||
var inst = this,
|
||
type = jQuery.type( red ),
|
||
rgba = this._rgba = [];
|
||
|
||
// more than 1 argument specified - assume ( red, green, blue, alpha )
|
||
if ( green !== undefined ) {
|
||
red = [ red, green, blue, alpha ];
|
||
type = "array";
|
||
}
|
||
|
||
if ( type === "string" ) {
|
||
return this.parse( stringParse( red ) || colors._default );
|
||
}
|
||
|
||
if ( type === "array" ) {
|
||
each( spaces.rgba.props, function( key, prop ) {
|
||
rgba[ prop.idx ] = clamp( red[ prop.idx ], prop );
|
||
});
|
||
return this;
|
||
}
|
||
|
||
if ( type === "object" ) {
|
||
if ( red instanceof color ) {
|
||
each( spaces, function( spaceName, space ) {
|
||
if ( red[ space.cache ] ) {
|
||
inst[ space.cache ] = red[ space.cache ].slice();
|
||
}
|
||
});
|
||
} else {
|
||
each( spaces, function( spaceName, space ) {
|
||
var cache = space.cache;
|
||
each( space.props, function( key, prop ) {
|
||
|
||
// if the cache doesn't exist, and we know how to convert
|
||
if ( !inst[ cache ] && space.to ) {
|
||
|
||
// if the value was null, we don't need to copy it
|
||
// if the key was alpha, we don't need to copy it either
|
||
if ( key === "alpha" || red[ key ] == null ) {
|
||
return;
|
||
}
|
||
inst[ cache ] = space.to( inst._rgba );
|
||
}
|
||
|
||
// this is the only case where we allow nulls for ALL properties.
|
||
// call clamp with alwaysAllowEmpty
|
||
inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true );
|
||
});
|
||
|
||
// everything defined but alpha?
|
||
if ( inst[ cache ] && jQuery.inArray( null, inst[ cache ].slice( 0, 3 ) ) < 0 ) {
|
||
// use the default of 1
|
||
inst[ cache ][ 3 ] = 1;
|
||
if ( space.from ) {
|
||
inst._rgba = space.from( inst[ cache ] );
|
||
}
|
||
}
|
||
});
|
||
}
|
||
return this;
|
||
}
|
||
},
|
||
is: function( compare ) {
|
||
var is = color( compare ),
|
||
same = true,
|
||
inst = this;
|
||
|
||
each( spaces, function( _, space ) {
|
||
var localCache,
|
||
isCache = is[ space.cache ];
|
||
if (isCache) {
|
||
localCache = inst[ space.cache ] || space.to && space.to( inst._rgba ) || [];
|
||
each( space.props, function( _, prop ) {
|
||
if ( isCache[ prop.idx ] != null ) {
|
||
same = ( isCache[ prop.idx ] === localCache[ prop.idx ] );
|
||
return same;
|
||
}
|
||
});
|
||
}
|
||
return same;
|
||
});
|
||
return same;
|
||
},
|
||
_space: function() {
|
||
var used = [],
|
||
inst = this;
|
||
each( spaces, function( spaceName, space ) {
|
||
if ( inst[ space.cache ] ) {
|
||
used.push( spaceName );
|
||
}
|
||
});
|
||
return used.pop();
|
||
},
|
||
transition: function( other, distance ) {
|
||
var end = color( other ),
|
||
spaceName = end._space(),
|
||
space = spaces[ spaceName ],
|
||
startColor = this.alpha() === 0 ? color( "transparent" ) : this,
|
||
start = startColor[ space.cache ] || space.to( startColor._rgba ),
|
||
result = start.slice();
|
||
|
||
end = end[ space.cache ];
|
||
each( space.props, function( key, prop ) {
|
||
var index = prop.idx,
|
||
startValue = start[ index ],
|
||
endValue = end[ index ],
|
||
type = propTypes[ prop.type ] || {};
|
||
|
||
// if null, don't override start value
|
||
if ( endValue === null ) {
|
||
return;
|
||
}
|
||
// if null - use end
|
||
if ( startValue === null ) {
|
||
result[ index ] = endValue;
|
||
} else {
|
||
if ( type.mod ) {
|
||
if ( endValue - startValue > type.mod / 2 ) {
|
||
startValue += type.mod;
|
||
} else if ( startValue - endValue > type.mod / 2 ) {
|
||
startValue -= type.mod;
|
||
}
|
||
}
|
||
result[ index ] = clamp( ( endValue - startValue ) * distance + startValue, prop );
|
||
}
|
||
});
|
||
return this[ spaceName ]( result );
|
||
},
|
||
blend: function( opaque ) {
|
||
// if we are already opaque - return ourself
|
||
if ( this._rgba[ 3 ] === 1 ) {
|
||
return this;
|
||
}
|
||
|
||
var rgb = this._rgba.slice(),
|
||
a = rgb.pop(),
|
||
blend = color( opaque )._rgba;
|
||
|
||
return color( jQuery.map( rgb, function( v, i ) {
|
||
return ( 1 - a ) * blend[ i ] + a * v;
|
||
}));
|
||
},
|
||
toRgbaString: function() {
|
||
var prefix = "rgba(",
|
||
rgba = jQuery.map( this._rgba, function( v, i ) {
|
||
return v == null ? ( i > 2 ? 1 : 0 ) : v;
|
||
});
|
||
|
||
if ( rgba[ 3 ] === 1 ) {
|
||
rgba.pop();
|
||
prefix = "rgb(";
|
||
}
|
||
|
||
return prefix + rgba.join() + ")";
|
||
},
|
||
toHslaString: function() {
|
||
var prefix = "hsla(",
|
||
hsla = jQuery.map( this.hsla(), function( v, i ) {
|
||
if ( v == null ) {
|
||
v = i > 2 ? 1 : 0;
|
||
}
|
||
|
||
// catch 1 and 2
|
||
if ( i && i < 3 ) {
|
||
v = Math.round( v * 100 ) + "%";
|
||
}
|
||
return v;
|
||
});
|
||
|
||
if ( hsla[ 3 ] === 1 ) {
|
||
hsla.pop();
|
||
prefix = "hsl(";
|
||
}
|
||
return prefix + hsla.join() + ")";
|
||
},
|
||
toHexString: function( includeAlpha ) {
|
||
var rgba = this._rgba.slice(),
|
||
alpha = rgba.pop();
|
||
|
||
if ( includeAlpha ) {
|
||
rgba.push( ~~( alpha * 255 ) );
|
||
}
|
||
|
||
return "#" + jQuery.map( rgba, function( v ) {
|
||
|
||
// default to 0 when nulls exist
|
||
v = ( v || 0 ).toString( 16 );
|
||
return v.length === 1 ? "0" + v : v;
|
||
}).join("");
|
||
},
|
||
toString: function() {
|
||
return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString();
|
||
}
|
||
});
|
||
color.fn.parse.prototype = color.fn;
|
||
|
||
// hsla conversions adapted from:
|
||
// https://code.google.com/p/maashaack/source/browse/packages/graphics/trunk/src/graphics/colors/HUE2RGB.as?r=5021
|
||
|
||
function hue2rgb( p, q, h ) {
|
||
h = ( h + 1 ) % 1;
|
||
if ( h * 6 < 1 ) {
|
||
return p + (q - p) * h * 6;
|
||
}
|
||
if ( h * 2 < 1) {
|
||
return q;
|
||
}
|
||
if ( h * 3 < 2 ) {
|
||
return p + (q - p) * ((2/3) - h) * 6;
|
||
}
|
||
return p;
|
||
}
|
||
|
||
spaces.hsla.to = function ( rgba ) {
|
||
if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) {
|
||
return [ null, null, null, rgba[ 3 ] ];
|
||
}
|
||
var r = rgba[ 0 ] / 255,
|
||
g = rgba[ 1 ] / 255,
|
||
b = rgba[ 2 ] / 255,
|
||
a = rgba[ 3 ],
|
||
max = Math.max( r, g, b ),
|
||
min = Math.min( r, g, b ),
|
||
diff = max - min,
|
||
add = max + min,
|
||
l = add * 0.5,
|
||
h, s;
|
||
|
||
if ( min === max ) {
|
||
h = 0;
|
||
} else if ( r === max ) {
|
||
h = ( 60 * ( g - b ) / diff ) + 360;
|
||
} else if ( g === max ) {
|
||
h = ( 60 * ( b - r ) / diff ) + 120;
|
||
} else {
|
||
h = ( 60 * ( r - g ) / diff ) + 240;
|
||
}
|
||
|
||
// chroma (diff) == 0 means greyscale which, by definition, saturation = 0%
|
||
// otherwise, saturation is based on the ratio of chroma (diff) to lightness (add)
|
||
if ( diff === 0 ) {
|
||
s = 0;
|
||
} else if ( l <= 0.5 ) {
|
||
s = diff / add;
|
||
} else {
|
||
s = diff / ( 2 - add );
|
||
}
|
||
return [ Math.round(h) % 360, s, l, a == null ? 1 : a ];
|
||
};
|
||
|
||
spaces.hsla.from = function ( hsla ) {
|
||
if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) {
|
||
return [ null, null, null, hsla[ 3 ] ];
|
||
}
|
||
var h = hsla[ 0 ] / 360,
|
||
s = hsla[ 1 ],
|
||
l = hsla[ 2 ],
|
||
a = hsla[ 3 ],
|
||
q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s,
|
||
p = 2 * l - q;
|
||
|
||
return [
|
||
Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ),
|
||
Math.round( hue2rgb( p, q, h ) * 255 ),
|
||
Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ),
|
||
a
|
||
];
|
||
};
|
||
|
||
|
||
each( spaces, function( spaceName, space ) {
|
||
var props = space.props,
|
||
cache = space.cache,
|
||
to = space.to,
|
||
from = space.from;
|
||
|
||
// makes rgba() and hsla()
|
||
color.fn[ spaceName ] = function( value ) {
|
||
|
||
// generate a cache for this space if it doesn't exist
|
||
if ( to && !this[ cache ] ) {
|
||
this[ cache ] = to( this._rgba );
|
||
}
|
||
if ( value === undefined ) {
|
||
return this[ cache ].slice();
|
||
}
|
||
|
||
var ret,
|
||
type = jQuery.type( value ),
|
||
arr = ( type === "array" || type === "object" ) ? value : arguments,
|
||
local = this[ cache ].slice();
|
||
|
||
each( props, function( key, prop ) {
|
||
var val = arr[ type === "object" ? key : prop.idx ];
|
||
if ( val == null ) {
|
||
val = local[ prop.idx ];
|
||
}
|
||
local[ prop.idx ] = clamp( val, prop );
|
||
});
|
||
|
||
if ( from ) {
|
||
ret = color( from( local ) );
|
||
ret[ cache ] = local;
|
||
return ret;
|
||
} else {
|
||
return color( local );
|
||
}
|
||
};
|
||
|
||
// makes red() green() blue() alpha() hue() saturation() lightness()
|
||
each( props, function( key, prop ) {
|
||
// alpha is included in more than one space
|
||
if ( color.fn[ key ] ) {
|
||
return;
|
||
}
|
||
color.fn[ key ] = function( value ) {
|
||
var vtype = jQuery.type( value ),
|
||
fn = ( key === "alpha" ? ( this._hsla ? "hsla" : "rgba" ) : spaceName ),
|
||
local = this[ fn ](),
|
||
cur = local[ prop.idx ],
|
||
match;
|
||
|
||
if ( vtype === "undefined" ) {
|
||
return cur;
|
||
}
|
||
|
||
if ( vtype === "function" ) {
|
||
value = value.call( this, cur );
|
||
vtype = jQuery.type( value );
|
||
}
|
||
if ( value == null && prop.empty ) {
|
||
return this;
|
||
}
|
||
if ( vtype === "string" ) {
|
||
match = rplusequals.exec( value );
|
||
if ( match ) {
|
||
value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 );
|
||
}
|
||
}
|
||
local[ prop.idx ] = value;
|
||
return this[ fn ]( local );
|
||
};
|
||
});
|
||
});
|
||
|
||
// add cssHook and .fx.step function for each named hook.
|
||
// accept a space separated string of properties
|
||
color.hook = function( hook ) {
|
||
var hooks = hook.split( " " );
|
||
each( hooks, function( i, hook ) {
|
||
jQuery.cssHooks[ hook ] = {
|
||
set: function( elem, value ) {
|
||
var parsed, curElem,
|
||
backgroundColor = "";
|
||
|
||
if ( value !== "transparent" && ( jQuery.type( value ) !== "string" || ( parsed = stringParse( value ) ) ) ) {
|
||
value = color( parsed || value );
|
||
if ( !support.rgba && value._rgba[ 3 ] !== 1 ) {
|
||
curElem = hook === "backgroundColor" ? elem.parentNode : elem;
|
||
while (
|
||
(backgroundColor === "" || backgroundColor === "transparent") &&
|
||
curElem && curElem.style
|
||
) {
|
||
try {
|
||
backgroundColor = jQuery.css( curElem, "backgroundColor" );
|
||
curElem = curElem.parentNode;
|
||
} catch ( e ) {
|
||
}
|
||
}
|
||
|
||
value = value.blend( backgroundColor && backgroundColor !== "transparent" ?
|
||
backgroundColor :
|
||
"_default" );
|
||
}
|
||
|
||
value = value.toRgbaString();
|
||
}
|
||
try {
|
||
elem.style[ hook ] = value;
|
||
} catch( e ) {
|
||
// wrapped to prevent IE from throwing errors on "invalid" values like 'auto' or 'inherit'
|
||
}
|
||
}
|
||
};
|
||
jQuery.fx.step[ hook ] = function( fx ) {
|
||
if ( !fx.colorInit ) {
|
||
fx.start = color( fx.elem, hook );
|
||
fx.end = color( fx.end );
|
||
fx.colorInit = true;
|
||
}
|
||
jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) );
|
||
};
|
||
});
|
||
|
||
};
|
||
|
||
color.hook( stepHooks );
|
||
|
||
jQuery.cssHooks.borderColor = {
|
||
expand: function( value ) {
|
||
var expanded = {};
|
||
|
||
each( [ "Top", "Right", "Bottom", "Left" ], function( i, part ) {
|
||
expanded[ "border" + part + "Color" ] = value;
|
||
});
|
||
return expanded;
|
||
}
|
||
};
|
||
|
||
// Basic color names only.
|
||
// Usage of any of the other color names requires adding yourself or including
|
||
// jquery.color.svg-names.js.
|
||
colors = jQuery.Color.names = {
|
||
// 4.1. Basic color keywords
|
||
aqua: "#00ffff",
|
||
black: "#000000",
|
||
blue: "#0000ff",
|
||
fuchsia: "#ff00ff",
|
||
gray: "#808080",
|
||
green: "#008000",
|
||
lime: "#00ff00",
|
||
maroon: "#800000",
|
||
navy: "#000080",
|
||
olive: "#808000",
|
||
purple: "#800080",
|
||
red: "#ff0000",
|
||
silver: "#c0c0c0",
|
||
teal: "#008080",
|
||
white: "#ffffff",
|
||
yellow: "#ffff00",
|
||
|
||
// 4.2.3. "transparent" color keyword
|
||
transparent: [ null, null, null, 0 ],
|
||
|
||
_default: "#ffffff"
|
||
};
|
||
|
||
}( jQuery ));
|
||
;/*!
|
||
* jQuery Form Plugin
|
||
* version: 3.51.0-2014.06.20
|
||
* Requires jQuery v1.5 or later
|
||
* Copyright (c) 2014 M. Alsup
|
||
* Examples and documentation at: http://malsup.com/jquery/form/
|
||
* Project repository: https://github.com/malsup/form
|
||
* Dual licensed under the MIT and GPL licenses.
|
||
* https://github.com/malsup/form#copyright-and-license
|
||
*/
|
||
/*global ActiveXObject */
|
||
|
||
// AMD support
|
||
(function (factory) {
|
||
"use strict";
|
||
if (typeof define === 'function' && define.amd) {
|
||
// using AMD; register as anon module
|
||
define(['jquery'], factory);
|
||
} else {
|
||
// no AMD; invoke directly
|
||
factory( (typeof(jQuery) != 'undefined') ? jQuery : window.Zepto );
|
||
}
|
||
}
|
||
|
||
(function($) {
|
||
"use strict";
|
||
|
||
/*
|
||
Usage Note:
|
||
-----------
|
||
Do not use both ajaxSubmit and ajaxForm on the same form. These
|
||
functions are mutually exclusive. Use ajaxSubmit if you want
|
||
to bind your own submit handler to the form. For example,
|
||
|
||
$(document).ready(function() {
|
||
$('#myForm').on('submit', function(e) {
|
||
e.preventDefault(); // <-- important
|
||
$(this).ajaxSubmit({
|
||
target: '#output'
|
||
});
|
||
});
|
||
});
|
||
|
||
Use ajaxForm when you want the plugin to manage all the event binding
|
||
for you. For example,
|
||
|
||
$(document).ready(function() {
|
||
$('#myForm').ajaxForm({
|
||
target: '#output'
|
||
});
|
||
});
|
||
|
||
You can also use ajaxForm with delegation (requires jQuery v1.7+), so the
|
||
form does not have to exist when you invoke ajaxForm:
|
||
|
||
$('#myForm').ajaxForm({
|
||
delegation: true,
|
||
target: '#output'
|
||
});
|
||
|
||
When using ajaxForm, the ajaxSubmit function will be invoked for you
|
||
at the appropriate time.
|
||
*/
|
||
|
||
/**
|
||
* Feature detection
|
||
*/
|
||
var feature = {};
|
||
feature.fileapi = $("<input type='file'/>").get(0).files !== undefined;
|
||
feature.formdata = window.FormData !== undefined;
|
||
|
||
var hasProp = !!$.fn.prop;
|
||
|
||
// attr2 uses prop when it can but checks the return type for
|
||
// an expected string. this accounts for the case where a form
|
||
// contains inputs with names like "action" or "method"; in those
|
||
// cases "prop" returns the element
|
||
$.fn.attr2 = function() {
|
||
if ( ! hasProp ) {
|
||
return this.attr.apply(this, arguments);
|
||
}
|
||
var val = this.prop.apply(this, arguments);
|
||
if ( ( val && val.jquery ) || typeof val === 'string' ) {
|
||
return val;
|
||
}
|
||
return this.attr.apply(this, arguments);
|
||
};
|
||
|
||
/**
|
||
* ajaxSubmit() provides a mechanism for immediately submitting
|
||
* an HTML form using AJAX.
|
||
*/
|
||
$.fn.ajaxSubmit = function(options) {
|
||
/*jshint scripturl:true */
|
||
|
||
// fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
|
||
if (!this.length) {
|
||
log('ajaxSubmit: skipping submit process - no element selected');
|
||
return this;
|
||
}
|
||
|
||
var method, action, url, $form = this;
|
||
|
||
if (typeof options == 'function') {
|
||
options = { success: options };
|
||
}
|
||
else if ( options === undefined ) {
|
||
options = {};
|
||
}
|
||
|
||
method = options.type || this.attr2('method');
|
||
action = options.url || this.attr2('action');
|
||
|
||
url = (typeof action === 'string') ? $.trim(action) : '';
|
||
url = url || window.location.href || '';
|
||
if (url) {
|
||
// clean url (don't include hash vaue)
|
||
url = (url.match(/^([^#]+)/)||[])[1];
|
||
}
|
||
|
||
options = $.extend(true, {
|
||
url: url,
|
||
success: $.ajaxSettings.success,
|
||
type: method || $.ajaxSettings.type,
|
||
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
|
||
}, options);
|
||
|
||
// hook for manipulating the form data before it is extracted;
|
||
// convenient for use with rich editors like tinyMCE or FCKEditor
|
||
var veto = {};
|
||
this.trigger('form-pre-serialize', [this, options, veto]);
|
||
if (veto.veto) {
|
||
log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
|
||
return this;
|
||
}
|
||
|
||
// provide opportunity to alter form data before it is serialized
|
||
if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
|
||
log('ajaxSubmit: submit aborted via beforeSerialize callback');
|
||
return this;
|
||
}
|
||
|
||
var traditional = options.traditional;
|
||
if ( traditional === undefined ) {
|
||
traditional = $.ajaxSettings.traditional;
|
||
}
|
||
|
||
var elements = [];
|
||
var qx, a = this.formToArray(options.semantic, elements);
|
||
if (options.data) {
|
||
options.extraData = options.data;
|
||
qx = $.param(options.data, traditional);
|
||
}
|
||
|
||
// give pre-submit callback an opportunity to abort the submit
|
||
if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
|
||
log('ajaxSubmit: submit aborted via beforeSubmit callback');
|
||
return this;
|
||
}
|
||
|
||
// fire vetoable 'validate' event
|
||
this.trigger('form-submit-validate', [a, this, options, veto]);
|
||
if (veto.veto) {
|
||
log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
|
||
return this;
|
||
}
|
||
|
||
var q = $.param(a, traditional);
|
||
if (qx) {
|
||
q = ( q ? (q + '&' + qx) : qx );
|
||
}
|
||
if (options.type.toUpperCase() == 'GET') {
|
||
options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
|
||
options.data = null; // data is null for 'get'
|
||
}
|
||
else {
|
||
options.data = q; // data is the query string for 'post'
|
||
}
|
||
|
||
var callbacks = [];
|
||
if (options.resetForm) {
|
||
callbacks.push(function() { $form.resetForm(); });
|
||
}
|
||
if (options.clearForm) {
|
||
callbacks.push(function() { $form.clearForm(options.includeHidden); });
|
||
}
|
||
|
||
// perform a load on the target only if dataType is not provided
|
||
if (!options.dataType && options.target) {
|
||
var oldSuccess = options.success || function(){};
|
||
callbacks.push(function(data) {
|
||
var fn = options.replaceTarget ? 'replaceWith' : 'html';
|
||
$(options.target)[fn](data).each(oldSuccess, arguments);
|
||
});
|
||
}
|
||
else if (options.success) {
|
||
callbacks.push(options.success);
|
||
}
|
||
|
||
options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
|
||
var context = options.context || this ; // jQuery 1.4+ supports scope context
|
||
for (var i=0, max=callbacks.length; i < max; i++) {
|
||
callbacks[i].apply(context, [data, status, xhr || $form, $form]);
|
||
}
|
||
};
|
||
|
||
if (options.error) {
|
||
var oldError = options.error;
|
||
options.error = function(xhr, status, error) {
|
||
var context = options.context || this;
|
||
oldError.apply(context, [xhr, status, error, $form]);
|
||
};
|
||
}
|
||
|
||
if (options.complete) {
|
||
var oldComplete = options.complete;
|
||
options.complete = function(xhr, status) {
|
||
var context = options.context || this;
|
||
oldComplete.apply(context, [xhr, status, $form]);
|
||
};
|
||
}
|
||
|
||
// are there files to upload?
|
||
|
||
// [value] (issue #113), also see comment:
|
||
// https://github.com/malsup/form/commit/588306aedba1de01388032d5f42a60159eea9228#commitcomment-2180219
|
||
var fileInputs = $('input[type=file]:enabled', this).filter(function() { return $(this).val() !== ''; });
|
||
|
||
var hasFileInputs = fileInputs.length > 0;
|
||
var mp = 'multipart/form-data';
|
||
var multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
|
||
|
||
var fileAPI = feature.fileapi && feature.formdata;
|
||
log("fileAPI :" + fileAPI);
|
||
var shouldUseFrame = (hasFileInputs || multipart) && !fileAPI;
|
||
|
||
var jqxhr;
|
||
|
||
// options.iframe allows user to force iframe mode
|
||
// 06-NOV-09: now defaulting to iframe mode if file input is detected
|
||
if (options.iframe !== false && (options.iframe || shouldUseFrame)) {
|
||
// hack to fix Safari hang (thanks to Tim Molendijk for this)
|
||
// see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
|
||
if (options.closeKeepAlive) {
|
||
$.get(options.closeKeepAlive, function() {
|
||
jqxhr = fileUploadIframe(a);
|
||
});
|
||
}
|
||
else {
|
||
jqxhr = fileUploadIframe(a);
|
||
}
|
||
}
|
||
else if ((hasFileInputs || multipart) && fileAPI) {
|
||
jqxhr = fileUploadXhr(a);
|
||
}
|
||
else {
|
||
jqxhr = $.ajax(options);
|
||
}
|
||
|
||
$form.removeData('jqxhr').data('jqxhr', jqxhr);
|
||
|
||
// clear element array
|
||
for (var k=0; k < elements.length; k++) {
|
||
elements[k] = null;
|
||
}
|
||
|
||
// fire 'notify' event
|
||
this.trigger('form-submit-notify', [this, options]);
|
||
return this;
|
||
|
||
// utility fn for deep serialization
|
||
function deepSerialize(extraData){
|
||
var serialized = $.param(extraData, options.traditional).split('&');
|
||
var len = serialized.length;
|
||
var result = [];
|
||
var i, part;
|
||
for (i=0; i < len; i++) {
|
||
// #252; undo param space replacement
|
||
serialized[i] = serialized[i].replace(/\+/g,' ');
|
||
part = serialized[i].split('=');
|
||
// #278; use array instead of object storage, favoring array serializations
|
||
result.push([decodeURIComponent(part[0]), decodeURIComponent(part[1])]);
|
||
}
|
||
return result;
|
||
}
|
||
|
||
// XMLHttpRequest Level 2 file uploads (big hat tip to francois2metz)
|
||
function fileUploadXhr(a) {
|
||
var formdata = new FormData();
|
||
|
||
for (var i=0; i < a.length; i++) {
|
||
formdata.append(a[i].name, a[i].value);
|
||
}
|
||
|
||
if (options.extraData) {
|
||
var serializedData = deepSerialize(options.extraData);
|
||
for (i=0; i < serializedData.length; i++) {
|
||
if (serializedData[i]) {
|
||
formdata.append(serializedData[i][0], serializedData[i][1]);
|
||
}
|
||
}
|
||
}
|
||
|
||
options.data = null;
|
||
|
||
var s = $.extend(true, {}, $.ajaxSettings, options, {
|
||
contentType: false,
|
||
processData: false,
|
||
cache: false,
|
||
type: method || 'POST'
|
||
});
|
||
|
||
if (options.uploadProgress) {
|
||
// workaround because jqXHR does not expose upload property
|
||
s.xhr = function() {
|
||
var xhr = $.ajaxSettings.xhr();
|
||
if (xhr.upload) {
|
||
xhr.upload.addEventListener('progress', function(event) {
|
||
var percent = 0;
|
||
var position = event.loaded || event.position; /*event.position is deprecated*/
|
||
var total = event.total;
|
||
if (event.lengthComputable) {
|
||
percent = Math.ceil(position / total * 100);
|
||
}
|
||
options.uploadProgress(event, position, total, percent);
|
||
}, false);
|
||
}
|
||
return xhr;
|
||
};
|
||
}
|
||
|
||
s.data = null;
|
||
var beforeSend = s.beforeSend;
|
||
s.beforeSend = function(xhr, o) {
|
||
//Send FormData() provided by user
|
||
if (options.formData) {
|
||
o.data = options.formData;
|
||
}
|
||
else {
|
||
o.data = formdata;
|
||
}
|
||
if(beforeSend) {
|
||
beforeSend.call(this, xhr, o);
|
||
}
|
||
};
|
||
return $.ajax(s);
|
||
}
|
||
|
||
// private function for handling file uploads (hat tip to YAHOO!)
|
||
function fileUploadIframe(a) {
|
||
var form = $form[0], el, i, s, g, id, $io, io, xhr, sub, n, timedOut, timeoutHandle;
|
||
var deferred = $.Deferred();
|
||
|
||
// #341
|
||
deferred.abort = function(status) {
|
||
xhr.abort(status);
|
||
};
|
||
|
||
if (a) {
|
||
// ensure that every serialized input is still enabled
|
||
for (i=0; i < elements.length; i++) {
|
||
el = $(elements[i]);
|
||
if ( hasProp ) {
|
||
el.prop('disabled', false);
|
||
}
|
||
else {
|
||
el.removeAttr('disabled');
|
||
}
|
||
}
|
||
}
|
||
|
||
s = $.extend(true, {}, $.ajaxSettings, options);
|
||
s.context = s.context || s;
|
||
id = 'jqFormIO' + (new Date().getTime());
|
||
if (s.iframeTarget) {
|
||
$io = $(s.iframeTarget);
|
||
n = $io.attr2('name');
|
||
if (!n) {
|
||
$io.attr2('name', id);
|
||
}
|
||
else {
|
||
id = n;
|
||
}
|
||
}
|
||
else {
|
||
$io = $('<iframe name="' + id + '" src="'+ s.iframeSrc +'" />');
|
||
$io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
|
||
}
|
||
io = $io[0];
|
||
|
||
|
||
xhr = { // mock object
|
||
aborted: 0,
|
||
responseText: null,
|
||
responseXML: null,
|
||
status: 0,
|
||
statusText: 'n/a',
|
||
getAllResponseHeaders: function() {},
|
||
getResponseHeader: function() {},
|
||
setRequestHeader: function() {},
|
||
abort: function(status) {
|
||
var e = (status === 'timeout' ? 'timeout' : 'aborted');
|
||
log('aborting upload... ' + e);
|
||
this.aborted = 1;
|
||
|
||
try { // #214, #257
|
||
if (io.contentWindow.document.execCommand) {
|
||
io.contentWindow.document.execCommand('Stop');
|
||
}
|
||
}
|
||
catch(ignore) {}
|
||
|
||
$io.attr('src', s.iframeSrc); // abort op in progress
|
||
xhr.error = e;
|
||
if (s.error) {
|
||
s.error.call(s.context, xhr, e, status);
|
||
}
|
||
if (g) {
|
||
$.event.trigger("ajaxError", [xhr, s, e]);
|
||
}
|
||
if (s.complete) {
|
||
s.complete.call(s.context, xhr, e);
|
||
}
|
||
}
|
||
};
|
||
|
||
g = s.global;
|
||
// trigger ajax global events so that activity/block indicators work like normal
|
||
if (g && 0 === $.active++) {
|
||
$.event.trigger("ajaxStart");
|
||
}
|
||
if (g) {
|
||
$.event.trigger("ajaxSend", [xhr, s]);
|
||
}
|
||
|
||
if (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {
|
||
if (s.global) {
|
||
$.active--;
|
||
}
|
||
deferred.reject();
|
||
return deferred;
|
||
}
|
||
if (xhr.aborted) {
|
||
deferred.reject();
|
||
return deferred;
|
||
}
|
||
|
||
// add submitting element to data if we know it
|
||
sub = form.clk;
|
||
if (sub) {
|
||
n = sub.name;
|
||
if (n && !sub.disabled) {
|
||
s.extraData = s.extraData || {};
|
||
s.extraData[n] = sub.value;
|
||
if (sub.type == "image") {
|
||
s.extraData[n+'.x'] = form.clk_x;
|
||
s.extraData[n+'.y'] = form.clk_y;
|
||
}
|
||
}
|
||
}
|
||
|
||
var CLIENT_TIMEOUT_ABORT = 1;
|
||
var SERVER_ABORT = 2;
|
||
|
||
function getDoc(frame) {
|
||
/* it looks like contentWindow or contentDocument do not
|
||
* carry the protocol property in ie8, when running under ssl
|
||
* frame.document is the only valid response document, since
|
||
* the protocol is know but not on the other two objects. strange?
|
||
* "Same origin policy" http://en.wikipedia.org/wiki/Same_origin_policy
|
||
*/
|
||
|
||
var doc = null;
|
||
|
||
// IE8 cascading access check
|
||
try {
|
||
if (frame.contentWindow) {
|
||
doc = frame.contentWindow.document;
|
||
}
|
||
} catch(err) {
|
||
// IE8 access denied under ssl & missing protocol
|
||
log('cannot get iframe.contentWindow document: ' + err);
|
||
}
|
||
|
||
if (doc) { // successful getting content
|
||
return doc;
|
||
}
|
||
|
||
try { // simply checking may throw in ie8 under ssl or mismatched protocol
|
||
doc = frame.contentDocument ? frame.contentDocument : frame.document;
|
||
} catch(err) {
|
||
// last attempt
|
||
log('cannot get iframe.contentDocument: ' + err);
|
||
doc = frame.document;
|
||
}
|
||
return doc;
|
||
}
|
||
|
||
// Rails CSRF hack (thanks to Yvan Barthelemy)
|
||
var csrf_token = $('meta[name=csrf-token]').attr('content');
|
||
var csrf_param = $('meta[name=csrf-param]').attr('content');
|
||
if (csrf_param && csrf_token) {
|
||
s.extraData = s.extraData || {};
|
||
s.extraData[csrf_param] = csrf_token;
|
||
}
|
||
|
||
// take a breath so that pending repaints get some cpu time before the upload starts
|
||
function doSubmit() {
|
||
// make sure form attrs are set
|
||
var t = $form.attr2('target'),
|
||
a = $form.attr2('action'),
|
||
mp = 'multipart/form-data',
|
||
et = $form.attr('enctype') || $form.attr('encoding') || mp;
|
||
|
||
// update form attrs in IE friendly way
|
||
form.setAttribute('target',id);
|
||
if (!method || /post/i.test(method) ) {
|
||
form.setAttribute('method', 'POST');
|
||
}
|
||
if (a != s.url) {
|
||
form.setAttribute('action', s.url);
|
||
}
|
||
|
||
// ie borks in some cases when setting encoding
|
||
if (! s.skipEncodingOverride && (!method || /post/i.test(method))) {
|
||
$form.attr({
|
||
encoding: 'multipart/form-data',
|
||
enctype: 'multipart/form-data'
|
||
});
|
||
}
|
||
|
||
// support timout
|
||
if (s.timeout) {
|
||
timeoutHandle = setTimeout(function() { timedOut = true; cb(CLIENT_TIMEOUT_ABORT); }, s.timeout);
|
||
}
|
||
|
||
// look for server aborts
|
||
function checkState() {
|
||
try {
|
||
var state = getDoc(io).readyState;
|
||
log('state = ' + state);
|
||
if (state && state.toLowerCase() == 'uninitialized') {
|
||
setTimeout(checkState,50);
|
||
}
|
||
}
|
||
catch(e) {
|
||
log('Server abort: ' , e, ' (', e.name, ')');
|
||
cb(SERVER_ABORT);
|
||
if (timeoutHandle) {
|
||
clearTimeout(timeoutHandle);
|
||
}
|
||
timeoutHandle = undefined;
|
||
}
|
||
}
|
||
|
||
// add "extra" data to form if provided in options
|
||
var extraInputs = [];
|
||
try {
|
||
if (s.extraData) {
|
||
for (var n in s.extraData) {
|
||
if (s.extraData.hasOwnProperty(n)) {
|
||
// if using the $.param format that allows for multiple values with the same name
|
||
if($.isPlainObject(s.extraData[n]) && s.extraData[n].hasOwnProperty('name') && s.extraData[n].hasOwnProperty('value')) {
|
||
extraInputs.push(
|
||
$('<input type="hidden" name="'+s.extraData[n].name+'">').val(s.extraData[n].value)
|
||
.appendTo(form)[0]);
|
||
} else {
|
||
extraInputs.push(
|
||
$('<input type="hidden" name="'+n+'">').val(s.extraData[n])
|
||
.appendTo(form)[0]);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
if (!s.iframeTarget) {
|
||
// add iframe to doc and submit the form
|
||
$io.appendTo('body');
|
||
}
|
||
if (io.attachEvent) {
|
||
io.attachEvent('onload', cb);
|
||
}
|
||
else {
|
||
io.addEventListener('load', cb, false);
|
||
}
|
||
setTimeout(checkState,15);
|
||
|
||
try {
|
||
form.submit();
|
||
} catch(err) {
|
||
// just in case form has element with name/id of 'submit'
|
||
var submitFn = document.createElement('form').submit;
|
||
submitFn.apply(form);
|
||
}
|
||
}
|
||
finally {
|
||
// reset attrs and remove "extra" input elements
|
||
form.setAttribute('action',a);
|
||
form.setAttribute('enctype', et); // #380
|
||
if(t) {
|
||
form.setAttribute('target', t);
|
||
} else {
|
||
$form.removeAttr('target');
|
||
}
|
||
$(extraInputs).remove();
|
||
}
|
||
}
|
||
|
||
if (s.forceSync) {
|
||
doSubmit();
|
||
}
|
||
else {
|
||
setTimeout(doSubmit, 10); // this lets dom updates render
|
||
}
|
||
|
||
var data, doc, domCheckCount = 50, callbackProcessed;
|
||
|
||
function cb(e) {
|
||
if (xhr.aborted || callbackProcessed) {
|
||
return;
|
||
}
|
||
|
||
doc = getDoc(io);
|
||
if(!doc) {
|
||
log('cannot access response document');
|
||
e = SERVER_ABORT;
|
||
}
|
||
if (e === CLIENT_TIMEOUT_ABORT && xhr) {
|
||
xhr.abort('timeout');
|
||
deferred.reject(xhr, 'timeout');
|
||
return;
|
||
}
|
||
else if (e == SERVER_ABORT && xhr) {
|
||
xhr.abort('server abort');
|
||
deferred.reject(xhr, 'error', 'server abort');
|
||
return;
|
||
}
|
||
|
||
if (!doc || doc.location.href == s.iframeSrc) {
|
||
// response not received yet
|
||
if (!timedOut) {
|
||
return;
|
||
}
|
||
}
|
||
if (io.detachEvent) {
|
||
io.detachEvent('onload', cb);
|
||
}
|
||
else {
|
||
io.removeEventListener('load', cb, false);
|
||
}
|
||
|
||
var status = 'success', errMsg;
|
||
try {
|
||
if (timedOut) {
|
||
throw 'timeout';
|
||
}
|
||
|
||
var isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);
|
||
log('isXml='+isXml);
|
||
if (!isXml && window.opera && (doc.body === null || !doc.body.innerHTML)) {
|
||
if (--domCheckCount) {
|
||
// in some browsers (Opera) the iframe DOM is not always traversable when
|
||
// the onload callback fires, so we loop a bit to accommodate
|
||
log('requeing onLoad callback, DOM not available');
|
||
setTimeout(cb, 250);
|
||
return;
|
||
}
|
||
// let this fall through because server response could be an empty document
|
||
//log('Could not access iframe DOM after mutiple tries.');
|
||
//throw 'DOMException: not available';
|
||
}
|
||
|
||
//log('response detected');
|
||
var docRoot = doc.body ? doc.body : doc.documentElement;
|
||
xhr.responseText = docRoot ? docRoot.innerHTML : null;
|
||
xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
|
||
if (isXml) {
|
||
s.dataType = 'xml';
|
||
}
|
||
xhr.getResponseHeader = function(header){
|
||
var headers = {'content-type': s.dataType};
|
||
return headers[header.toLowerCase()];
|
||
};
|
||
// support for XHR 'status' & 'statusText' emulation :
|
||
if (docRoot) {
|
||
xhr.status = Number( docRoot.getAttribute('status') ) || xhr.status;
|
||
xhr.statusText = docRoot.getAttribute('statusText') || xhr.statusText;
|
||
}
|
||
|
||
var dt = (s.dataType || '').toLowerCase();
|
||
var scr = /(json|script|text)/.test(dt);
|
||
if (scr || s.textarea) {
|
||
// see if user embedded response in textarea
|
||
var ta = doc.getElementsByTagName('textarea')[0];
|
||
if (ta) {
|
||
xhr.responseText = ta.value;
|
||
// support for XHR 'status' & 'statusText' emulation :
|
||
xhr.status = Number( ta.getAttribute('status') ) || xhr.status;
|
||
xhr.statusText = ta.getAttribute('statusText') || xhr.statusText;
|
||
}
|
||
else if (scr) {
|
||
// account for browsers injecting pre around json response
|
||
var pre = doc.getElementsByTagName('pre')[0];
|
||
var b = doc.getElementsByTagName('body')[0];
|
||
if (pre) {
|
||
xhr.responseText = pre.textContent ? pre.textContent : pre.innerText;
|
||
}
|
||
else if (b) {
|
||
xhr.responseText = b.textContent ? b.textContent : b.innerText;
|
||
}
|
||
}
|
||
}
|
||
else if (dt == 'xml' && !xhr.responseXML && xhr.responseText) {
|
||
xhr.responseXML = toXml(xhr.responseText);
|
||
}
|
||
|
||
try {
|
||
data = httpData(xhr, dt, s);
|
||
}
|
||
catch (err) {
|
||
status = 'parsererror';
|
||
xhr.error = errMsg = (err || status);
|
||
}
|
||
}
|
||
catch (err) {
|
||
log('error caught: ',err);
|
||
status = 'error';
|
||
xhr.error = errMsg = (err || status);
|
||
}
|
||
|
||
if (xhr.aborted) {
|
||
log('upload aborted');
|
||
status = null;
|
||
}
|
||
|
||
if (xhr.status) { // we've set xhr.status
|
||
status = (xhr.status >= 200 && xhr.status < 300 || xhr.status === 304) ? 'success' : 'error';
|
||
}
|
||
|
||
// ordering of these callbacks/triggers is odd, but that's how $.ajax does it
|
||
if (status === 'success') {
|
||
if (s.success) {
|
||
s.success.call(s.context, data, 'success', xhr);
|
||
}
|
||
deferred.resolve(xhr.responseText, 'success', xhr);
|
||
if (g) {
|
||
$.event.trigger("ajaxSuccess", [xhr, s]);
|
||
}
|
||
}
|
||
else if (status) {
|
||
if (errMsg === undefined) {
|
||
errMsg = xhr.statusText;
|
||
}
|
||
if (s.error) {
|
||
s.error.call(s.context, xhr, status, errMsg);
|
||
}
|
||
deferred.reject(xhr, 'error', errMsg);
|
||
if (g) {
|
||
$.event.trigger("ajaxError", [xhr, s, errMsg]);
|
||
}
|
||
}
|
||
|
||
if (g) {
|
||
$.event.trigger("ajaxComplete", [xhr, s]);
|
||
}
|
||
|
||
if (g && ! --$.active) {
|
||
$.event.trigger("ajaxStop");
|
||
}
|
||
|
||
if (s.complete) {
|
||
s.complete.call(s.context, xhr, status);
|
||
}
|
||
|
||
callbackProcessed = true;
|
||
if (s.timeout) {
|
||
clearTimeout(timeoutHandle);
|
||
}
|
||
|
||
// clean up
|
||
setTimeout(function() {
|
||
if (!s.iframeTarget) {
|
||
$io.remove();
|
||
}
|
||
else { //adding else to clean up existing iframe response.
|
||
$io.attr('src', s.iframeSrc);
|
||
}
|
||
xhr.responseXML = null;
|
||
}, 100);
|
||
}
|
||
|
||
var toXml = $.parseXML || function(s, doc) { // use parseXML if available (jQuery 1.5+)
|
||
if (window.ActiveXObject) {
|
||
doc = new ActiveXObject('Microsoft.XMLDOM');
|
||
doc.async = 'false';
|
||
doc.loadXML(s);
|
||
}
|
||
else {
|
||
doc = (new DOMParser()).parseFromString(s, 'text/xml');
|
||
}
|
||
return (doc && doc.documentElement && doc.documentElement.nodeName != 'parsererror') ? doc : null;
|
||
};
|
||
var parseJSON = $.parseJSON || function(s) {
|
||
/*jslint evil:true */
|
||
return window['eval']('(' + s + ')');
|
||
};
|
||
|
||
var httpData = function( xhr, type, s ) { // mostly lifted from jq1.4.4
|
||
|
||
var ct = xhr.getResponseHeader('content-type') || '',
|
||
xml = type === 'xml' || !type && ct.indexOf('xml') >= 0,
|
||
data = xml ? xhr.responseXML : xhr.responseText;
|
||
|
||
if (xml && data.documentElement.nodeName === 'parsererror') {
|
||
if ($.error) {
|
||
$.error('parsererror');
|
||
}
|
||
}
|
||
if (s && s.dataFilter) {
|
||
data = s.dataFilter(data, type);
|
||
}
|
||
if (typeof data === 'string') {
|
||
if (type === 'json' || !type && ct.indexOf('json') >= 0) {
|
||
data = parseJSON(data);
|
||
} else if (type === "script" || !type && ct.indexOf("javascript") >= 0) {
|
||
$.globalEval(data);
|
||
}
|
||
}
|
||
return data;
|
||
};
|
||
|
||
return deferred;
|
||
}
|
||
};
|
||
|
||
/**
|
||
* ajaxForm() provides a mechanism for fully automating form submission.
|
||
*
|
||
* The advantages of using this method instead of ajaxSubmit() are:
|
||
*
|
||
* 1: This method will include coordinates for <input type="image" /> elements (if the element
|
||
* is used to submit the form).
|
||
* 2. This method will include the submit element's name/value data (for the element that was
|
||
* used to submit the form).
|
||
* 3. This method binds the submit() method to the form for you.
|
||
*
|
||
* The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely
|
||
* passes the options argument along after properly binding events for submit elements and
|
||
* the form itself.
|
||
*/
|
||
$.fn.ajaxForm = function(options) {
|
||
options = options || {};
|
||
options.delegation = options.delegation && $.isFunction($.fn.on);
|
||
|
||
// in jQuery 1.3+ we can fix mistakes with the ready state
|
||
if (!options.delegation && this.length === 0) {
|
||
var o = { s: this.selector, c: this.context };
|
||
if (!$.isReady && o.s) {
|
||
log('DOM not ready, queuing ajaxForm');
|
||
$(function() {
|
||
$(o.s,o.c).ajaxForm(options);
|
||
});
|
||
return this;
|
||
}
|
||
// is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
|
||
log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
|
||
return this;
|
||
}
|
||
|
||
if ( options.delegation ) {
|
||
$(document)
|
||
.off('submit.form-plugin', this.selector, doAjaxSubmit)
|
||
.off('click.form-plugin', this.selector, captureSubmittingElement)
|
||
.on('submit.form-plugin', this.selector, options, doAjaxSubmit)
|
||
.on('click.form-plugin', this.selector, options, captureSubmittingElement);
|
||
return this;
|
||
}
|
||
|
||
return this.ajaxFormUnbind()
|
||
.bind('submit.form-plugin', options, doAjaxSubmit)
|
||
.bind('click.form-plugin', options, captureSubmittingElement);
|
||
};
|
||
|
||
// private event handlers
|
||
function doAjaxSubmit(e) {
|
||
/*jshint validthis:true */
|
||
var options = e.data;
|
||
if (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed
|
||
e.preventDefault();
|
||
$(e.target).ajaxSubmit(options); // #365
|
||
}
|
||
}
|
||
|
||
function captureSubmittingElement(e) {
|
||
/*jshint validthis:true */
|
||
var target = e.target;
|
||
var $el = $(target);
|
||
if (!($el.is("[type=submit],[type=image]"))) {
|
||
// is this a child element of the submit el? (ex: a span within a button)
|
||
var t = $el.closest('[type=submit]');
|
||
if (t.length === 0) {
|
||
return;
|
||
}
|
||
target = t[0];
|
||
}
|
||
var form = this;
|
||
form.clk = target;
|
||
if (target.type == 'image') {
|
||
if (e.offsetX !== undefined) {
|
||
form.clk_x = e.offsetX;
|
||
form.clk_y = e.offsetY;
|
||
} else if (typeof $.fn.offset == 'function') {
|
||
var offset = $el.offset();
|
||
form.clk_x = e.pageX - offset.left;
|
||
form.clk_y = e.pageY - offset.top;
|
||
} else {
|
||
form.clk_x = e.pageX - target.offsetLeft;
|
||
form.clk_y = e.pageY - target.offsetTop;
|
||
}
|
||
}
|
||
// clear form vars
|
||
setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);
|
||
}
|
||
|
||
|
||
// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
|
||
$.fn.ajaxFormUnbind = function() {
|
||
return this.unbind('submit.form-plugin click.form-plugin');
|
||
};
|
||
|
||
/**
|
||
* formToArray() gathers form element data into an array of objects that can
|
||
* be passed to any of the following ajax functions: $.get, $.post, or load.
|
||
* Each object in the array has both a 'name' and 'value' property. An example of
|
||
* an array for a simple login form might be:
|
||
*
|
||
* [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
|
||
*
|
||
* It is this array that is passed to pre-submit callback functions provided to the
|
||
* ajaxSubmit() and ajaxForm() methods.
|
||
*/
|
||
$.fn.formToArray = function(semantic, elements) {
|
||
var a = [];
|
||
if (this.length === 0) {
|
||
return a;
|
||
}
|
||
|
||
var form = this[0];
|
||
var formId = this.attr('id');
|
||
var els = semantic ? form.getElementsByTagName('*') : form.elements;
|
||
var els2;
|
||
|
||
if (els && !/MSIE [678]/.test(navigator.userAgent)) { // #390
|
||
els = $(els).get(); // convert to standard array
|
||
}
|
||
|
||
// #386; account for inputs outside the form which use the 'form' attribute
|
||
if ( formId ) {
|
||
els2 = $(':input[form="' + formId + '"]').get(); // hat tip @thet
|
||
if ( els2.length ) {
|
||
els = (els || []).concat(els2);
|
||
}
|
||
}
|
||
|
||
if (!els || !els.length) {
|
||
return a;
|
||
}
|
||
|
||
var i,j,n,v,el,max,jmax;
|
||
for(i=0, max=els.length; i < max; i++) {
|
||
el = els[i];
|
||
n = el.name;
|
||
if (!n || el.disabled) {
|
||
continue;
|
||
}
|
||
|
||
if (semantic && form.clk && el.type == "image") {
|
||
// handle image inputs on the fly when semantic == true
|
||
if(form.clk == el) {
|
||
a.push({name: n, value: $(el).val(), type: el.type });
|
||
a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
|
||
}
|
||
continue;
|
||
}
|
||
|
||
v = $.fieldValue(el, true);
|
||
if (v && v.constructor == Array) {
|
||
if (elements) {
|
||
elements.push(el);
|
||
}
|
||
for(j=0, jmax=v.length; j < jmax; j++) {
|
||
a.push({name: n, value: v[j]});
|
||
}
|
||
}
|
||
else if (feature.fileapi && el.type == 'file') {
|
||
if (elements) {
|
||
elements.push(el);
|
||
}
|
||
var files = el.files;
|
||
if (files.length) {
|
||
for (j=0; j < files.length; j++) {
|
||
a.push({name: n, value: files[j], type: el.type});
|
||
}
|
||
}
|
||
else {
|
||
// #180
|
||
a.push({ name: n, value: '', type: el.type });
|
||
}
|
||
}
|
||
else if (v !== null && typeof v != 'undefined') {
|
||
if (elements) {
|
||
elements.push(el);
|
||
}
|
||
a.push({name: n, value: v, type: el.type, required: el.required});
|
||
}
|
||
}
|
||
|
||
if (!semantic && form.clk) {
|
||
// input type=='image' are not found in elements array! handle it here
|
||
var $input = $(form.clk), input = $input[0];
|
||
n = input.name;
|
||
if (n && !input.disabled && input.type == 'image') {
|
||
a.push({name: n, value: $input.val()});
|
||
a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
|
||
}
|
||
}
|
||
return a;
|
||
};
|
||
|
||
/**
|
||
* Serializes form data into a 'submittable' string. This method will return a string
|
||
* in the format: name1=value1&name2=value2
|
||
*/
|
||
$.fn.formSerialize = function(semantic) {
|
||
//hand off to jQuery.param for proper encoding
|
||
return $.param(this.formToArray(semantic));
|
||
};
|
||
|
||
/**
|
||
* Serializes all field elements in the jQuery object into a query string.
|
||
* This method will return a string in the format: name1=value1&name2=value2
|
||
*/
|
||
$.fn.fieldSerialize = function(successful) {
|
||
var a = [];
|
||
this.each(function() {
|
||
var n = this.name;
|
||
if (!n) {
|
||
return;
|
||
}
|
||
var v = $.fieldValue(this, successful);
|
||
if (v && v.constructor == Array) {
|
||
for (var i=0,max=v.length; i < max; i++) {
|
||
a.push({name: n, value: v[i]});
|
||
}
|
||
}
|
||
else if (v !== null && typeof v != 'undefined') {
|
||
a.push({name: this.name, value: v});
|
||
}
|
||
});
|
||
//hand off to jQuery.param for proper encoding
|
||
return $.param(a);
|
||
};
|
||
|
||
/**
|
||
* Returns the value(s) of the element in the matched set. For example, consider the following form:
|
||
*
|
||
* <form><fieldset>
|
||
* <input name="A" type="text" />
|
||
* <input name="A" type="text" />
|
||
* <input name="B" type="checkbox" value="B1" />
|
||
* <input name="B" type="checkbox" value="B2"/>
|
||
* <input name="C" type="radio" value="C1" />
|
||
* <input name="C" type="radio" value="C2" />
|
||
* </fieldset></form>
|
||
*
|
||
* var v = $('input[type=text]').fieldValue();
|
||
* // if no values are entered into the text inputs
|
||
* v == ['','']
|
||
* // if values entered into the text inputs are 'foo' and 'bar'
|
||
* v == ['foo','bar']
|
||
*
|
||
* var v = $('input[type=checkbox]').fieldValue();
|
||
* // if neither checkbox is checked
|
||
* v === undefined
|
||
* // if both checkboxes are checked
|
||
* v == ['B1', 'B2']
|
||
*
|
||
* var v = $('input[type=radio]').fieldValue();
|
||
* // if neither radio is checked
|
||
* v === undefined
|
||
* // if first radio is checked
|
||
* v == ['C1']
|
||
*
|
||
* The successful argument controls whether or not the field element must be 'successful'
|
||
* (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
|
||
* The default value of the successful argument is true. If this value is false the value(s)
|
||
* for each element is returned.
|
||
*
|
||
* Note: This method *always* returns an array. If no valid value can be determined the
|
||
* array will be empty, otherwise it will contain one or more values.
|
||
*/
|
||
$.fn.fieldValue = function(successful) {
|
||
for (var val=[], i=0, max=this.length; i < max; i++) {
|
||
var el = this[i];
|
||
var v = $.fieldValue(el, successful);
|
||
if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) {
|
||
continue;
|
||
}
|
||
if (v.constructor == Array) {
|
||
$.merge(val, v);
|
||
}
|
||
else {
|
||
val.push(v);
|
||
}
|
||
}
|
||
return val;
|
||
};
|
||
|
||
/**
|
||
* Returns the value of the field element.
|
||
*/
|
||
$.fieldValue = function(el, successful) {
|
||
var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
|
||
if (successful === undefined) {
|
||
successful = true;
|
||
}
|
||
|
||
if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
|
||
(t == 'checkbox' || t == 'radio') && !el.checked ||
|
||
(t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
|
||
tag == 'select' && el.selectedIndex == -1)) {
|
||
return null;
|
||
}
|
||
|
||
if (tag == 'select') {
|
||
var index = el.selectedIndex;
|
||
if (index < 0) {
|
||
return null;
|
||
}
|
||
var a = [], ops = el.options;
|
||
var one = (t == 'select-one');
|
||
var max = (one ? index+1 : ops.length);
|
||
for(var i=(one ? index : 0); i < max; i++) {
|
||
var op = ops[i];
|
||
if (op.selected) {
|
||
var v = op.value;
|
||
if (!v) { // extra pain for IE...
|
||
v = (op.attributes && op.attributes.value && !(op.attributes.value.specified)) ? op.text : op.value;
|
||
}
|
||
if (one) {
|
||
return v;
|
||
}
|
||
a.push(v);
|
||
}
|
||
}
|
||
return a;
|
||
}
|
||
return $(el).val();
|
||
};
|
||
|
||
/**
|
||
* Clears the form data. Takes the following actions on the form's input fields:
|
||
* - input text fields will have their 'value' property set to the empty string
|
||
* - select elements will have their 'selectedIndex' property set to -1
|
||
* - checkbox and radio inputs will have their 'checked' property set to false
|
||
* - inputs of type submit, button, reset, and hidden will *not* be effected
|
||
* - button elements will *not* be effected
|
||
*/
|
||
$.fn.clearForm = function(includeHidden) {
|
||
return this.each(function() {
|
||
$('input,select,textarea', this).clearFields(includeHidden);
|
||
});
|
||
};
|
||
|
||
/**
|
||
* Clears the selected form elements.
|
||
*/
|
||
$.fn.clearFields = $.fn.clearInputs = function(includeHidden) {
|
||
var re = /^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i; // 'hidden' is not in this list
|
||
return this.each(function() {
|
||
var t = this.type, tag = this.tagName.toLowerCase();
|
||
if (re.test(t) || tag == 'textarea') {
|
||
this.value = '';
|
||
}
|
||
else if (t == 'checkbox' || t == 'radio') {
|
||
this.checked = false;
|
||
}
|
||
else if (tag == 'select') {
|
||
this.selectedIndex = -1;
|
||
}
|
||
else if (t == "file") {
|
||
if (/MSIE/.test(navigator.userAgent)) {
|
||
$(this).replaceWith($(this).clone(true));
|
||
} else {
|
||
$(this).val('');
|
||
}
|
||
}
|
||
else if (includeHidden) {
|
||
// includeHidden can be the value true, or it can be a selector string
|
||
// indicating a special test; for example:
|
||
// $('#myForm').clearForm('.special:hidden')
|
||
// the above would clean hidden inputs that have the class of 'special'
|
||
if ( (includeHidden === true && /hidden/.test(t)) ||
|
||
(typeof includeHidden == 'string' && $(this).is(includeHidden)) ) {
|
||
this.value = '';
|
||
}
|
||
}
|
||
});
|
||
};
|
||
|
||
/**
|
||
* Resets the form data. Causes all form elements to be reset to their original value.
|
||
*/
|
||
$.fn.resetForm = function() {
|
||
return this.each(function() {
|
||
// guard against an input with the name of 'reset'
|
||
// note that IE reports the reset function as an 'object'
|
||
if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) {
|
||
this.reset();
|
||
}
|
||
});
|
||
};
|
||
|
||
/**
|
||
* Enables or disables any matching elements.
|
||
*/
|
||
$.fn.enable = function(b) {
|
||
if (b === undefined) {
|
||
b = true;
|
||
}
|
||
return this.each(function() {
|
||
this.disabled = !b;
|
||
});
|
||
};
|
||
|
||
/**
|
||
* Checks/unchecks any matching checkboxes or radio buttons and
|
||
* selects/deselects and matching option elements.
|
||
*/
|
||
$.fn.selected = function(select) {
|
||
if (select === undefined) {
|
||
select = true;
|
||
}
|
||
return this.each(function() {
|
||
var t = this.type;
|
||
if (t == 'checkbox' || t == 'radio') {
|
||
this.checked = select;
|
||
}
|
||
else if (this.tagName.toLowerCase() == 'option') {
|
||
var $sel = $(this).parent('select');
|
||
if (select && $sel[0] && $sel[0].type == 'select-one') {
|
||
// deselect all other options
|
||
$sel.find('option').selected(false);
|
||
}
|
||
this.selected = select;
|
||
}
|
||
});
|
||
};
|
||
|
||
// expose debug var
|
||
$.fn.ajaxSubmit.debug = false;
|
||
|
||
// helper fn for console logging
|
||
function log() {
|
||
if (!$.fn.ajaxSubmit.debug) {
|
||
return;
|
||
}
|
||
var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
|
||
if (window.console && window.console.log) {
|
||
window.console.log(msg);
|
||
}
|
||
else if (window.opera && window.opera.postError) {
|
||
window.opera.postError(msg);
|
||
}
|
||
}
|
||
|
||
}));
|
||
;/*
|
||
Copyright (c) 2011 Oscar Godson ( http://oscargodson.com ) and Sebastian Nitu ( http://sebnitu.com )
|
||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
of this software and associated documentation files (the "Software"), to deal
|
||
in the Software without restriction, including without limitation the rights
|
||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
copies of the Software, and to permit persons to whom the Software is
|
||
furnished to do so, subject to the following conditions:
|
||
|
||
The above copyright notice and this permission notice shall be included in
|
||
all copies or substantial portions of the Software.
|
||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
THE SOFTWARE.
|
||
|
||
More infomation on http://oscargodson.com/labs/jkey
|
||
or fork it at https://github.com/OscarGodson/jKey
|
||
|
||
Special thanks to Macy Abbey
|
||
*/
|
||
(function($) {
|
||
$.fn.jkey = function(keyCombo,options,callback) {
|
||
// Save the key codes to JSON object
|
||
var keyCodes = {
|
||
/* start the a-z keys */
|
||
'a' : 65,
|
||
'b' : 66,
|
||
'c' : 67,
|
||
'd' : 68,
|
||
'e' : 69,
|
||
'f' : 70,
|
||
'g' : 71,
|
||
'h' : 72,
|
||
'i' : 73,
|
||
'j' : 74,
|
||
'k' : 75,
|
||
'l' : 76,
|
||
'm' : 77,
|
||
'n' : 78,
|
||
'o' : 79,
|
||
'p' : 80,
|
||
'q' : 81,
|
||
'r' : 82,
|
||
's' : 83,
|
||
't' : 84,
|
||
'u' : 85,
|
||
'v' : 86,
|
||
'w' : 87,
|
||
'x' : 88,
|
||
'y' : 89,
|
||
'z' : 90,
|
||
/* start number keys */
|
||
'0' : 48,
|
||
'1' : 49,
|
||
'2' : 50,
|
||
'3' : 51,
|
||
'4' : 52,
|
||
'5' : 53,
|
||
'6' : 54,
|
||
'7' : 55,
|
||
'8' : 56,
|
||
'9' : 57,
|
||
/* start the f keys */
|
||
'f1' : 112,
|
||
'f2' : 113,
|
||
'f3' : 114,
|
||
'f4' : 115,
|
||
'f5' : 116,
|
||
'f6' : 117,
|
||
'f7' : 118,
|
||
'f8' : 119,
|
||
'f9' : 120,
|
||
'f10': 121,
|
||
'f11': 122,
|
||
'f12': 123,
|
||
/* start the modifier keys */
|
||
'shift' : 16,
|
||
'ctrl' : 17,
|
||
'control' : 17,
|
||
'alt' : 18,
|
||
'option' : 18, //Mac OS key
|
||
'opt' : 18, //Mac OS key
|
||
'cmd' : 224, //Mac OS key
|
||
'command' : 224, //Mac OS key
|
||
'fn' : 255, //tested on Lenovo ThinkPad
|
||
'function' : 255, //tested on Lenovo ThinkPad
|
||
/* Misc. Keys */
|
||
'backspace' : 8,
|
||
'osxdelete' : 8, //Mac OS version of backspace
|
||
'enter' : 13,
|
||
'return' : 13, //Mac OS version of "enter"
|
||
'space':32,
|
||
'spacebar':32,
|
||
'esc':27,
|
||
'escape':27,
|
||
'tab':9,
|
||
'capslock':20,
|
||
'capslk':20,
|
||
'super':91,
|
||
'windows':91,
|
||
'insert':45,
|
||
'delete':46, //NOT THE OS X DELETE KEY!
|
||
'home':36,
|
||
'end':35,
|
||
'pgup':33,
|
||
'pageup':33,
|
||
'pgdn':34,
|
||
'pagedown':34,
|
||
/* Arrow keys */
|
||
'left' : 37,
|
||
'up' : 38,
|
||
'right': 39,
|
||
'down' : 40,
|
||
/* Special char keys */
|
||
'`':96,
|
||
'~':96,
|
||
'-':45,
|
||
'_':45,
|
||
'=':187,
|
||
'+':187,
|
||
'[':219,
|
||
'{':219,
|
||
']':221,
|
||
'}':221,
|
||
'\\':220, //it's actually a \ but there's two to escape the original
|
||
'|':220,
|
||
';':59,
|
||
':':59,
|
||
"'":222,
|
||
'"':222,
|
||
',':188,
|
||
'<':188,
|
||
'.':190,
|
||
'>':190,
|
||
'/':191,
|
||
'?':191
|
||
};
|
||
|
||
var x = '';
|
||
var y = '';
|
||
if(typeof options == 'function' && typeof callback == 'undefined'){
|
||
callback = options;
|
||
options = false;
|
||
}
|
||
|
||
//IE has issues here... so, we "convert" toString() :(
|
||
if(keyCombo.toString().indexOf(',') > -1){ //If multiple keys are selected
|
||
var keySplit = keyCombo.match(/[a-zA-Z0-9]+/gi);
|
||
}
|
||
else { //Else just store this single key
|
||
var keySplit = [keyCombo];
|
||
}
|
||
for(x in keySplit){ //For each key in the array...
|
||
if(!keySplit.hasOwnProperty(x)) { continue; }
|
||
//Same as above for the toString() and IE
|
||
if(keySplit[x].toString().indexOf('+') > -1){
|
||
//Key selection by user is a key combo
|
||
// Create a combo array and split the key combo
|
||
var combo = [];
|
||
var comboSplit = keySplit[x].split('+');
|
||
// Save the key codes for each element in the key combo
|
||
for(y in comboSplit){
|
||
combo[y] = keyCodes[ comboSplit[y] ];
|
||
}
|
||
keySplit[x] = combo;
|
||
}
|
||
else {
|
||
//Otherwise, it's just a normal, single key command
|
||
keySplit[x] = keyCodes[ keySplit[x] ];
|
||
}
|
||
}
|
||
|
||
function swapJsonKeyValues(input) {
|
||
var one, output = {};
|
||
for (one in input) {
|
||
if (input.hasOwnProperty(one)) {
|
||
output[input[one]] = one;
|
||
}
|
||
}
|
||
return output;
|
||
}
|
||
|
||
var keyCodesSwitch = swapJsonKeyValues(keyCodes);
|
||
|
||
return this.each(function() {
|
||
$this = $(this);
|
||
|
||
// Create active keys array
|
||
// This array will store all the keys that are currently being pressed
|
||
var activeKeys = [];
|
||
$this.bind('keydown',function(e){
|
||
// Save the current key press
|
||
activeKeys[ e.keyCode ] = e.keyCode;
|
||
|
||
if($.inArray(e.keyCode, keySplit) > -1){ // If the key the user pressed is matched with any key the developer set a key code with...
|
||
if(typeof callback == 'function'){ //and they provided a callback function
|
||
callback.call(this, keyCodesSwitch[e.keyCode] ); //trigger call back and...
|
||
if(options === false){
|
||
e.preventDefault(); //cancel the normal
|
||
}
|
||
}
|
||
}
|
||
else { // Else, the key did not match which means it's either a key combo or just dosn't exist
|
||
// Check if the individual items in the key combo match what was pressed
|
||
for(x in keySplit){
|
||
if($.inArray(e.keyCode, keySplit[x]) > -1){
|
||
// Initiate the active variable
|
||
var active = 'unchecked';
|
||
|
||
// All the individual keys in the combo with the keys that are currently being pressed
|
||
for(y in keySplit[x]) {
|
||
if(active != false) {
|
||
if($.inArray(keySplit[x][y], activeKeys) > -1){
|
||
active = true;
|
||
}
|
||
else {
|
||
active = false;
|
||
}
|
||
}
|
||
}
|
||
// If all the keys in the combo are being pressed, active will equal true
|
||
if(active === true){
|
||
if(typeof callback == 'function'){ //and they provided a callback function
|
||
|
||
var activeString = '';
|
||
|
||
for(var z in activeKeys) {
|
||
if (activeKeys[z] != '') {
|
||
activeString += keyCodesSwitch[ activeKeys[z] ] + '+';
|
||
}
|
||
}
|
||
activeString = activeString.substring(0, activeString.length - 1);
|
||
callback.call(this, activeString ); //trigger call back and...
|
||
if(options === false){
|
||
e.preventDefault(); //cancel the normal
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
} // end of if in array
|
||
}).bind('keyup',function(e) {
|
||
// Remove the current key press
|
||
activeKeys[ e.keyCode ] = '';
|
||
});
|
||
});
|
||
}
|
||
})(jQuery);;/*
|
||
* Metadata - jQuery plugin for parsing metadata from elements
|
||
*
|
||
* Copyright (c) 2006 John Resig, Yehuda Katz, J<>örn Zaefferer, Paul McLanahan
|
||
*
|
||
* Dual licensed under the MIT and GPL licenses:
|
||
* http://www.opensource.org/licenses/mit-license.php
|
||
* http://www.gnu.org/licenses/gpl.html
|
||
*
|
||
* Revision: $Id: jquery.metadata.js 4187 2007-12-16 17:15:27Z joern.zaefferer $
|
||
*
|
||
*/
|
||
|
||
/**
|
||
* Sets the type of metadata to use. Metadata is encoded in JSON, and each property
|
||
* in the JSON will become a property of the element itself.
|
||
*
|
||
* There are three supported types of metadata storage:
|
||
*
|
||
* attr: Inside an attribute. The name parameter indicates *which* attribute.
|
||
*
|
||
* class: Inside the class attribute, wrapped in curly braces: { }
|
||
*
|
||
* elem: Inside a child element (e.g. a script tag). The
|
||
* name parameter indicates *which* element.
|
||
*
|
||
* The metadata for an element is loaded the first time the element is accessed via jQuery.
|
||
*
|
||
* As a result, you can define the metadata type, use $(expr) to load the metadata into the elements
|
||
* matched by expr, then redefine the metadata type and run another $(expr) for other elements.
|
||
*
|
||
* @name $.metadata.setType
|
||
*
|
||
* @example <p id="one" class="some_class {item_id: 1, item_label: 'Label'}">This is a p</p>
|
||
* @before $.metadata.setType("class")
|
||
* @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
|
||
* @desc Reads metadata from the class attribute
|
||
*
|
||
* @example <p id="one" class="some_class" data="{item_id: 1, item_label: 'Label'}">This is a p</p>
|
||
* @before $.metadata.setType("attr", "data")
|
||
* @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
|
||
* @desc Reads metadata from a "data" attribute
|
||
*
|
||
* @example <p id="one" class="some_class"><script>{item_id: 1, item_label: 'Label'}</script>This is a p</p>
|
||
* @before $.metadata.setType("elem", "script")
|
||
* @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
|
||
* @desc Reads metadata from a nested script element
|
||
*
|
||
* @param String type The encoding type
|
||
* @param String name The name of the attribute to be used to get metadata (optional)
|
||
* @cat Plugins/Metadata
|
||
* @descr Sets the type of encoding to be used when loading metadata for the first time
|
||
* @type undefined
|
||
* @see metadata()
|
||
*/
|
||
|
||
(function($) {
|
||
|
||
$.extend({
|
||
metadata : {
|
||
defaults : {
|
||
type: 'class',
|
||
name: 'metadata',
|
||
cre: /({.*})/,
|
||
single: 'metadata'
|
||
},
|
||
setType: function( type, name ){
|
||
this.defaults.type = type;
|
||
this.defaults.name = name;
|
||
},
|
||
get: function( elem, opts ){
|
||
var settings = $.extend({},this.defaults,opts);
|
||
// check for empty string in single property
|
||
if ( !settings.single.length ) settings.single = 'metadata';
|
||
|
||
var data = $.data(elem, settings.single);
|
||
// returned cached data if it already exists
|
||
if ( data ) return data;
|
||
|
||
data = "{}";
|
||
|
||
if ( settings.type == "class" ) {
|
||
var m = settings.cre.exec( elem.className );
|
||
if ( m )
|
||
data = m[1];
|
||
} else if ( settings.type == "elem" ) {
|
||
if( !elem.getElementsByTagName )
|
||
return undefined;
|
||
var e = elem.getElementsByTagName(settings.name);
|
||
if ( e.length )
|
||
data = $.trim(e[0].innerHTML);
|
||
} else if ( elem.getAttribute != undefined ) {
|
||
var attr = elem.getAttribute( settings.name );
|
||
if ( attr )
|
||
data = attr;
|
||
}
|
||
|
||
if ( data.indexOf( '{' ) <0 )
|
||
data = "{" + data + "}";
|
||
|
||
data = eval("(" + data + ")");
|
||
|
||
$.data( elem, settings.single, data );
|
||
return data;
|
||
}
|
||
}
|
||
});
|
||
|
||
/**
|
||
* Returns the metadata object for the first member of the jQuery object.
|
||
*
|
||
* @name metadata
|
||
* @descr Returns element's metadata object
|
||
* @param Object opts An object contianing settings to override the defaults
|
||
* @type jQuery
|
||
* @cat Plugins/Metadata
|
||
*/
|
||
$.fn.metadata = function( opts ){
|
||
return $.metadata.get( this[0], opts );
|
||
};
|
||
|
||
})(jQuery);;/*! TableSorter (FORK) v2.20.1 */
|
||
!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&"object"==typeof module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){"use strict";a.extend({tablesorter:new function(){function b(){var a=arguments[0],b=arguments.length>1?Array.prototype.slice.call(arguments):a;"undefined"!=typeof console&&"undefined"!=typeof console.log?console[/error/i.test(a)?"error":/warn/i.test(a)?"warn":"log"](b):alert(b)}function c(a,c){b(a+" ("+((new Date).getTime()-c.getTime())+"ms)")}function d(a){for(var b in a)return!1;return!0}function e(c,d,e,f){for(var g,h,i=c.config,j=u.parsers.length,k=!1,l="",m=!0;""===l&&m;)e++,d[e]?(k=d[e].cells[f],l=u.getElementText(i,k,f),h=a(k),c.config.debug&&b("Checking if value was empty on row "+e+", column: "+f+': "'+l+'"')):m=!1;for(;--j>=0;)if(g=u.parsers[j],g&&"text"!==g.id&&g.is&&g.is(l,c,k,h))return g;return u.getParserById("text")}function f(a){var d,f,g,h,i,j,k,l,m,n,o=a.config,p=o.$tbodies=o.$table.children("tbody:not(."+o.cssInfoBlock+")"),q=0,r="",s=p.length;if(0===s)return o.debug?b("Warning: *Empty table!* Not building a parser cache"):"";for(o.debug&&(n=new Date,b("Detecting parsers for each column")),f={extractors:[],parsers:[]};s>q;){if(d=p[q].rows,d.length)for(g=o.columns,h=0;g>h;h++)i=o.$headers.filter('[data-column="'+h+'"]:last'),j=u.getColumnData(a,o.headers,h),m=u.getParserById(u.getData(i,j,"extractor")),l=u.getParserById(u.getData(i,j,"sorter")),k="false"===u.getData(i,j,"parser"),o.empties[h]=(u.getData(i,j,"empty")||o.emptyTo||(o.emptyToBottom?"bottom":"top")).toLowerCase(),o.strings[h]=(u.getData(i,j,"string")||o.stringTo||"max").toLowerCase(),k&&(l=u.getParserById("no-parser")),m||(m=!1),l||(l=e(a,d,-1,h)),o.debug&&(r+="column:"+h+"; extractor:"+m.id+"; parser:"+l.id+"; string:"+o.strings[h]+"; empty: "+o.empties[h]+"\n"),f.parsers[h]=l,f.extractors[h]=m;q+=f.parsers.length?s:1}o.debug&&(b(r?r:"No parsers detected"),c("Completed detecting parsers",n)),o.parsers=f.parsers,o.extractors=f.extractors}function g(d){var e,f,g,h,i,j,k,l,m,n,o,p,q,r=d.config,s=r.$tbodies,t=r.extractors,v=r.parsers;if(r.cache={},r.totalRows=0,!v)return r.debug?b("Warning: *Empty table!* Not building a cache"):"";for(r.debug&&(n=new Date),r.showProcessing&&u.isProcessing(d,!0),k=0;k<s.length;k++){for(q=[],e=r.cache[k]={normalized:[]},o=s[k]&&s[k].rows.length||0,i=0;o>i;++i)if(p={child:[],raw:[]},l=a(s[k].rows[i]),m=[],l.hasClass(r.cssChildRow)&&0!==i)f=e.normalized.length-1,e.normalized[f][r.columns].$row=e.normalized[f][r.columns].$row.add(l),l.prev().hasClass(r.cssChildRow)||l.prev().addClass(u.css.cssHasChild),p.child[f]=a.trim(l[0].textContent||l.text()||"");else{for(p.$row=l,p.order=i,j=0;j<r.columns;++j)"undefined"!=typeof v[j]?(f=u.getElementText(r,l[0].cells[j],j),p.raw.push(f),g="undefined"==typeof t[j].id?f:t[j].format(f,d,l[0].cells[j],j),h="no-parser"===v[j].id?"":v[j].format(g,d,l[0].cells[j],j),m.push(r.ignoreCase&&"string"==typeof h?h.toLowerCase():h),"numeric"===(v[j].type||"").toLowerCase()&&(q[j]=Math.max(Math.abs(h)||0,q[j]||0))):r.debug&&b("No parser found for cell:",l[0].cells[j],"does it have a header?");m[r.columns]=p,e.normalized.push(m)}e.colMax=q,r.totalRows+=e.normalized.length}r.showProcessing&&u.isProcessing(d),r.debug&&c("Building cache for "+o+" rows",n)}function h(a,b){var e,f,g,h,i,j,k,l=a.config,m=l.widgetOptions,n=l.$tbodies,o=[],p=l.cache;if(d(p))return l.appender?l.appender(a,o):a.isUpdating?l.$table.trigger("updateComplete",a):"";for(l.debug&&(k=new Date),j=0;j<n.length;j++)if(g=n.eq(j),g.length){for(h=u.processTbody(a,g,!0),e=p[j].normalized,f=e.length,i=0;f>i;i++)o.push(e[i][l.columns].$row),l.appender&&(!l.pager||l.pager.removeRows&&m.pager_removeRows||l.pager.ajax)||h.append(e[i][l.columns].$row);u.processTbody(a,h,!1)}l.appender&&l.appender(a,o),l.debug&&c("Rebuilt table",k),b||l.appender||u.applyWidget(a),a.isUpdating&&l.$table.trigger("updateComplete",a)}function i(a){return/^d/i.test(a)||1===a}function j(d){var e,f,g,h,j,k,m,n=d.config;n.headerList=[],n.headerContent=[],n.debug&&(m=new Date),n.columns=u.computeColumnIndex(n.$table.children("thead, tfoot").children("tr")),h=n.cssIcon?'<i class="'+(n.cssIcon===u.css.icon?u.css.icon:n.cssIcon+" "+u.css.icon)+'"></i>':"",n.$headers=a(a.map(a(d).find(n.selectorHeaders),function(b,c){return f=a(b),f.parent().hasClass(n.cssIgnoreRow)?void 0:(e=u.getColumnData(d,n.headers,c,!0),n.headerContent[c]=f.html(),""===n.headerTemplate||f.find("."+u.css.headerIn).length||(j=n.headerTemplate.replace(/\{content\}/g,f.html()).replace(/\{icon\}/g,f.find("."+u.css.icon).length?"":h),n.onRenderTemplate&&(g=n.onRenderTemplate.apply(f,[c,j]),g&&"string"==typeof g&&(j=g)),f.html('<div class="'+u.css.headerIn+'">'+j+"</div>")),n.onRenderHeader&&n.onRenderHeader.apply(f,[c,n,n.$table]),b.column=parseInt(f.attr("data-column"),10),b.order=i(u.getData(f,e,"sortInitialOrder")||n.sortInitialOrder)?[1,0,2]:[0,1,2],b.count=-1,b.lockedOrder=!1,k=u.getData(f,e,"lockedOrder")||!1,"undefined"!=typeof k&&k!==!1&&(b.order=b.lockedOrder=i(k)?[1,1,1]:[0,0,0]),f.addClass(u.css.header+" "+n.cssHeader),n.headerList[c]=b,f.parent().addClass(u.css.headerRow+" "+n.cssHeaderRow).attr("role","row"),n.tabIndex&&f.attr("tabindex",0),b)})),a(d).find(n.selectorHeaders).attr({scope:"col",role:"columnheader"}),l(d),n.debug&&(c("Built headers:",m),b(n.$headers))}function k(a,b,c){var d=a.config;d.$table.find(d.selectorRemove).remove(),f(a),g(a),s(d,b,c)}function l(b){var c,d,e,f=b.config;f.$headers.each(function(g,h){d=a(h),e=u.getColumnData(b,f.headers,g,!0),c="false"===u.getData(h,e,"sorter")||"false"===u.getData(h,e,"parser"),h.sortDisabled=c,d[c?"addClass":"removeClass"]("sorter-false").attr("aria-disabled",""+c),b.id&&(c?d.removeAttr("aria-controls"):d.attr("aria-controls",b.id))})}function m(b){var c,d,e,f=b.config,g=f.sortList,h=g.length,i=u.css.sortNone+" "+f.cssNone,j=[u.css.sortAsc+" "+f.cssAsc,u.css.sortDesc+" "+f.cssDesc],k=[f.cssIconAsc,f.cssIconDesc,f.cssIconNone],l=["ascending","descending"],m=a(b).find("tfoot tr").children().add(f.$extraHeaders).removeClass(j.join(" "));for(f.$headers.removeClass(j.join(" ")).addClass(i).attr("aria-sort","none").find("."+f.cssIcon).removeClass(k.join(" ")).addClass(k[2]),d=0;h>d;d++)if(2!==g[d][1]&&(c=f.$headers.not(".sorter-false").filter('[data-column="'+g[d][0]+'"]'+(1===h?":last":"")),c.length)){for(e=0;e<c.length;e++)c[e].sortDisabled||c.eq(e).removeClass(i).addClass(j[g[d][1]]).attr("aria-sort",l[g[d][1]]).find("."+f.cssIcon).removeClass(k[2]).addClass(k[g[d][1]]);m.length&&m.filter('[data-column="'+g[d][0]+'"]').removeClass(i).addClass(j[g[d][1]])}f.$headers.not(".sorter-false").each(function(){var b=a(this),c=this.order[(this.count+1)%(f.sortReset?3:2)],d=a.trim(b.text())+": "+u.language[b.hasClass(u.css.sortAsc)?"sortAsc":b.hasClass(u.css.sortDesc)?"sortDesc":"sortNone"]+u.language[0===c?"nextAsc":1===c?"nextDesc":"nextNone"];b.attr("aria-label",d)})}function n(b,c){var d,e,f,g,h,i=b.config,j=c||i.sortList;i.sortList=[],a.each(j,function(b,c){if(g=parseInt(c[0],10),f=i.$headers.filter('[data-column="'+g+'"]:last')[0]){switch(e=(""+c[1]).match(/^(1|d|s|o|n)/),e=e?e[0]:""){case"1":case"d":e=1;break;case"s":e=h||0;break;case"o":d=f.order[(h||0)%(i.sortReset?3:2)],e=0===d?1:1===d?0:2;break;case"n":f.count=f.count+1,e=f.order[f.count%(i.sortReset?3:2)];break;default:e=0}h=0===b?e:h,d=[g,parseInt(e,10)||0],i.sortList.push(d),e=a.inArray(d[1],f.order),f.count=e>=0?e:d[1]%(i.sortReset?3:2)}})}function o(a,b){return a&&a[b]?a[b].type||"":""}function p(b,c,d){if(b.isUpdating)return setTimeout(function(){p(b,c,d)},50);var e,f,g,i,j,k=b.config,l=!d[k.sortMultiSortKey],n=k.$table;if(n.trigger("sortStart",b),c.count=d[k.sortResetKey]?2:(c.count+1)%(k.sortReset?3:2),k.sortRestart&&(f=c,k.$headers.each(function(){this===f||!l&&a(this).is("."+u.css.sortDesc+",."+u.css.sortAsc)||(this.count=-1)})),f=parseInt(a(c).attr("data-column"),10),l){if(k.sortList=[],null!==k.sortForce)for(e=k.sortForce,g=0;g<e.length;g++)e[g][0]!==f&&k.sortList.push(e[g]);if(i=c.order[c.count],2>i&&(k.sortList.push([f,i]),c.colSpan>1))for(g=1;g<c.colSpan;g++)k.sortList.push([f+g,i])}else{if(k.sortAppend&&k.sortList.length>1)for(g=0;g<k.sortAppend.length;g++)j=u.isValueInArray(k.sortAppend[g][0],k.sortList),j>=0&&k.sortList.splice(j,1);if(u.isValueInArray(f,k.sortList)>=0)for(g=0;g<k.sortList.length;g++)j=k.sortList[g],i=k.$headers.filter('[data-column="'+j[0]+'"]:last')[0],j[0]===f&&(j[1]=i.order[c.count],2===j[1]&&(k.sortList.splice(g,1),i.count=-1));else if(i=c.order[c.count],2>i&&(k.sortList.push([f,i]),c.colSpan>1))for(g=1;g<c.colSpan;g++)k.sortList.push([f+g,i])}if(null!==k.sortAppend)for(e=k.sortAppend,g=0;g<e.length;g++)e[g][0]!==f&&k.sortList.push(e[g]);n.trigger("sortBegin",b),setTimeout(function(){m(b),q(b),h(b),n.trigger("sortEnd",b)},1)}function q(a){var b,e,f,g,h,i,j,k,l,m,n,p=0,q=a.config,r=q.textSorter||"",s=q.sortList,t=s.length,v=q.$tbodies.length;if(!q.serverSideSorting&&!d(q.cache)){for(q.debug&&(h=new Date),e=0;v>e;e++)i=q.cache[e].colMax,j=q.cache[e].normalized,j.sort(function(c,d){for(b=0;t>b;b++){if(g=s[b][0],k=s[b][1],p=0===k,q.sortStable&&c[g]===d[g]&&1===t)return c[q.columns].order-d[q.columns].order;if(f=/n/i.test(o(q.parsers,g)),f&&q.strings[g]?(f="boolean"==typeof q.string[q.strings[g]]?(p?1:-1)*(q.string[q.strings[g]]?-1:1):q.strings[g]?q.string[q.strings[g]]||0:0,l=q.numberSorter?q.numberSorter(c[g],d[g],p,i[g],a):u["sortNumeric"+(p?"Asc":"Desc")](c[g],d[g],f,i[g],g,a)):(m=p?c:d,n=p?d:c,l="function"==typeof r?r(m[g],n[g],p,g,a):"object"==typeof r&&r.hasOwnProperty(g)?r[g](m[g],n[g],p,g,a):u["sortNatural"+(p?"Asc":"Desc")](c[g],d[g],g,a,q)),l)return l}return c[q.columns].order-d[q.columns].order});q.debug&&c("Sorting on "+s.toString()+" and dir "+k+" time",h)}}function r(b,c){b.table.isUpdating&&b.$table.trigger("updateComplete",b.table),a.isFunction(c)&&c(b.table)}function s(b,c,d){var e=a.isArray(c)?c:b.sortList,f="undefined"==typeof c?b.resort:c;f===!1||b.serverSideSorting||b.table.isProcessing?(r(b,d),u.applyWidget(b.table,!1)):e.length?b.$table.trigger("sorton",[e,function(){r(b,d)},!0]):b.$table.trigger("sortReset",[function(){r(b,d),u.applyWidget(b.table,!1)}])}function t(b){var c=b.config,e=c.$table,i="sortReset update updateRows updateCell updateAll addRows updateComplete sorton appendCache updateCache applyWidgetId applyWidgets refreshWidgets destroy mouseup mouseleave ".split(" ").join(c.namespace+" ");e.unbind(i.replace(/\s+/g," ")).bind("sortReset"+c.namespace,function(d,e){d.stopPropagation(),c.sortList=[],m(b),q(b),h(b),a.isFunction(e)&&e(b)}).bind("updateAll"+c.namespace,function(a,d,e){a.stopPropagation(),b.isUpdating=!0,u.refreshWidgets(b,!0,!0),j(b),u.bindEvents(b,c.$headers,!0),t(b),k(b,d,e)}).bind("update"+c.namespace+" updateRows"+c.namespace,function(a,c,d){a.stopPropagation(),b.isUpdating=!0,l(b),k(b,c,d)}).bind("updateCell"+c.namespace,function(d,f,g,h){d.stopPropagation(),b.isUpdating=!0,e.find(c.selectorRemove).remove();var i,j,k,l,m=c.$tbodies,n=a(f),o=m.index(a.fn.closest?n.closest("tbody"):n.parents("tbody").filter(":first")),p=a.fn.closest?n.closest("tr"):n.parents("tr").filter(":first");f=n[0],m.length&&o>=0&&(k=m.eq(o).find("tr").index(p),l=n.index(),c.cache[o].normalized[k][c.columns].$row=p,j="undefined"==typeof c.extractors[l].id?u.getElementText(c,f,l):c.extractors[l].format(u.getElementText(c,f,l),b,f,l),i="no-parser"===c.parsers[l].id?"":c.parsers[l].format(j,b,f,l),c.cache[o].normalized[k][l]=c.ignoreCase&&"string"==typeof i?i.toLowerCase():i,"numeric"===(c.parsers[l].type||"").toLowerCase()&&(c.cache[o].colMax[l]=Math.max(Math.abs(i)||0,c.cache[o].colMax[l]||0)),i="undefined"!==g?g:c.resort,i!==!1?s(c,i,h):(a.isFunction(h)&&h(b),c.$table.trigger("updateComplete",c.table)))}).bind("addRows"+c.namespace,function(e,g,h,i){if(e.stopPropagation(),b.isUpdating=!0,d(c.cache))l(b),k(b,h,i);else{g=a(g).attr("role","row");var j,m,n,o,p,q,r,t=g.filter("tr").length,v=c.$tbodies.index(g.parents("tbody").filter(":first"));for(c.parsers&&c.parsers.length||f(b),j=0;t>j;j++){for(n=g[j].cells.length,r=[],q={child:[],$row:g.eq(j),order:c.cache[v].normalized.length},m=0;n>m;m++)o="undefined"==typeof c.extractors[m].id?u.getElementText(c,g[j].cells[m],m):c.extractors[m].format(u.getElementText(c,g[j].cells[m],m),b,g[j].cells[m],m),p="no-parser"===c.parsers[m].id?"":c.parsers[m].format(o,b,g[j].cells[m],m),r[m]=c.ignoreCase&&"string"==typeof p?p.toLowerCase():p,"numeric"===(c.parsers[m].type||"").toLowerCase()&&(c.cache[v].colMax[m]=Math.max(Math.abs(r[m])||0,c.cache[v].colMax[m]||0));r.push(q),c.cache[v].normalized.push(r)}s(c,h,i)}}).bind("updateComplete"+c.namespace,function(){b.isUpdating=!1}).bind("sorton"+c.namespace,function(c,f,i,j){var k=b.config;c.stopPropagation(),e.trigger("sortStart",this),n(b,f),m(b),k.delayInit&&d(k.cache)&&g(b),e.trigger("sortBegin",this),q(b),h(b,j),e.trigger("sortEnd",this),u.applyWidget(b),a.isFunction(i)&&i(b)}).bind("appendCache"+c.namespace,function(c,d,e){c.stopPropagation(),h(b,e),a.isFunction(d)&&d(b)}).bind("updateCache"+c.namespace,function(d,e){c.parsers&&c.parsers.length||f(b),g(b),a.isFunction(e)&&e(b)}).bind("applyWidgetId"+c.namespace,function(a,d){a.stopPropagation(),u.getWidgetById(d).format(b,c,c.widgetOptions)}).bind("applyWidgets"+c.namespace,function(a,c){a.stopPropagation(),u.applyWidget(b,c)}).bind("refreshWidgets"+c.namespace,function(a,c,d){a.stopPropagation(),u.refreshWidgets(b,c,d)}).bind("destroy"+c.namespace,function(a,c,d){a.stopPropagation(),u.destroy(b,c,d)}).bind("resetToLoadState"+c.namespace,function(){u.removeWidget(b,!0,!1),c=a.extend(!0,u.defaults,c.originalSettings),b.hasInitialized=!1,u.setup(b,c)})}var u=this;u.version="2.20.1",u.parsers=[],u.widgets=[],u.defaults={theme:"default",widthFixed:!1,showProcessing:!1,headerTemplate:"{content}",onRenderTemplate:null,onRenderHeader:null,cancelSelection:!0,tabIndex:!0,dateFormat:"mmddyyyy",sortMultiSortKey:"shiftKey",sortResetKey:"ctrlKey",usNumberFormat:!0,delayInit:!1,serverSideSorting:!1,resort:!0,headers:{},ignoreCase:!0,sortForce:null,sortList:[],sortAppend:null,sortStable:!1,sortInitialOrder:"asc",sortLocaleCompare:!1,sortReset:!1,sortRestart:!1,emptyTo:"bottom",stringTo:"max",textExtraction:"basic",textAttribute:"data-text",textSorter:null,numberSorter:null,widgets:[],widgetOptions:{zebra:["even","odd"]},initWidgets:!0,widgetClass:"widget-{name}",initialized:null,tableClass:"",cssAsc:"",cssDesc:"",cssNone:"",cssHeader:"",cssHeaderRow:"",cssProcessing:"",cssChildRow:"tablesorter-childRow",cssIcon:"tablesorter-icon",cssIconNone:"",cssIconAsc:"",cssIconDesc:"",cssInfoBlock:"tablesorter-infoOnly",cssNoSort:"tablesorter-noSort",cssIgnoreRow:"tablesorter-ignoreRow",selectorHeaders:"> thead th, > thead td",selectorSort:"th, td",selectorRemove:".remove-me",debug:!1,headerList:[],empties:{},strings:{},parsers:[]},u.css={table:"tablesorter",cssHasChild:"tablesorter-hasChildRow",childRow:"tablesorter-childRow",colgroup:"tablesorter-colgroup",header:"tablesorter-header",headerRow:"tablesorter-headerRow",headerIn:"tablesorter-header-inner",icon:"tablesorter-icon",processing:"tablesorter-processing",sortAsc:"tablesorter-headerAsc",sortDesc:"tablesorter-headerDesc",sortNone:"tablesorter-headerUnSorted"},u.language={sortAsc:"Ascending sort applied, ",sortDesc:"Descending sort applied, ",sortNone:"No sort applied, ",nextAsc:"activate to apply an ascending sort",nextDesc:"activate to apply a descending sort",nextNone:"activate to remove the sort"},u.log=b,u.benchmark=c,u.getElementText=function(b,c,d){if(!c)return"";var e,f=b.textExtraction||"",g=c.jquery?c:a(c);return a.trim("string"==typeof f?("basic"===f?g.attr(b.textAttribute)||c.textContent:c.textContent)||g.text()||"":"function"==typeof f?f(g[0],b.table,d):"function"==typeof(e=u.getColumnData(b.table,f,d))?e(g[0],b.table,d):g[0].textContent||g.text()||"")},u.construct=function(b){return this.each(function(){var c=this,d=a.extend(!0,{},u.defaults,b);d.originalSettings=b,!c.hasInitialized&&u.buildTable&&"TABLE"!==this.tagName?u.buildTable(c,d):u.setup(c,d)})},u.setup=function(c,d){if(!c||!c.tHead||0===c.tBodies.length||c.hasInitialized===!0)return d.debug?b("ERROR: stopping initialization! No table, thead, tbody or tablesorter has already been initialized"):"";var e="",h=a(c),i=a.metadata;c.hasInitialized=!1,c.isProcessing=!0,c.config=d,a.data(c,"tablesorter",d),d.debug&&a.data(c,"startoveralltimer",new Date),d.supportsDataObject=function(a){return a[0]=parseInt(a[0],10),a[0]>1||1===a[0]&&parseInt(a[1],10)>=4}(a.fn.jquery.split(".")),d.string={max:1,min:-1,emptymin:1,emptymax:-1,zero:0,none:0,"null":0,top:!0,bottom:!1},d.emptyTo=d.emptyTo.toLowerCase(),d.stringTo=d.stringTo.toLowerCase(),/tablesorter\-/.test(h.attr("class"))||(e=""!==d.theme?" tablesorter-"+d.theme:""),d.table=c,d.$table=h.addClass(u.css.table+" "+d.tableClass+e).attr("role","grid"),d.$headers=h.find(d.selectorHeaders),d.namespace=d.namespace?"."+d.namespace.replace(/\W/g,""):".tablesorter"+Math.random().toString(16).slice(2),d.$table.children().children("tr").attr("role","row"),d.$tbodies=h.children("tbody:not(."+d.cssInfoBlock+")").attr({"aria-live":"polite","aria-relevant":"all"}),d.$table.children("caption").length&&(e=d.$table.children("caption")[0],e.id||(e.id=d.namespace.slice(1)+"caption"),d.$table.attr("aria-labelledby",e.id)),d.widgetInit={},d.textExtraction=d.$table.attr("data-text-extraction")||d.textExtraction||"basic",j(c),u.fixColumnWidth(c),f(c),d.totalRows=0,d.delayInit||g(c),u.bindEvents(c,d.$headers,!0),t(c),d.supportsDataObject&&"undefined"!=typeof h.data().sortlist?d.sortList=h.data().sortlist:i&&h.metadata()&&h.metadata().sortlist&&(d.sortList=h.metadata().sortlist),u.applyWidget(c,!0),d.sortList.length>0?h.trigger("sorton",[d.sortList,{},!d.initWidgets,!0]):(m(c),d.initWidgets&&u.applyWidget(c,!1)),d.showProcessing&&h.unbind("sortBegin"+d.namespace+" sortEnd"+d.namespace).bind("sortBegin"+d.namespace+" sortEnd"+d.namespace,function(a){clearTimeout(d.processTimer),u.isProcessing(c),"sortBegin"===a.type&&(d.processTimer=setTimeout(function(){u.isProcessing(c,!0)},500))}),c.hasInitialized=!0,c.isProcessing=!1,d.debug&&u.benchmark("Overall initialization time",a.data(c,"startoveralltimer")),h.trigger("tablesorter-initialized",c),"function"==typeof d.initialized&&d.initialized(c)},u.fixColumnWidth=function(b){b=a(b)[0];var c,d,e=b.config,f=e.$table.children("colgroup");f.length&&f.hasClass(u.css.colgroup)&&f.remove(),e.widthFixed&&0===e.$table.children("colgroup").length&&(f=a('<colgroup class="'+u.css.colgroup+'">'),c=e.$table.width(),e.$tbodies.find("tr:first").children(":visible").each(function(){d=parseInt(a(this).width()/c*1e3,10)/10+"%",f.append(a("<col>").css("width",d))}),e.$table.prepend(f))},u.getColumnData=function(b,c,d,e,f){if("undefined"!=typeof c&&null!==c){b=a(b)[0];var g,h,i=b.config,j=f||i.$headers;if(c[d])return e?c[d]:c[j.index(j.filter('[data-column="'+d+'"]:last'))];for(h in c)if("string"==typeof h&&(g=j.filter('[data-column="'+d+'"]:last').filter(h).add(j.filter('[data-column="'+d+'"]:last').find(h)),g.length))return c[h]}},u.computeColumnIndex=function(b){var c,d,e,f,g,h,i,j,k,l,m,n,o,p=[],q={},r=0;for(c=0;c<b.length;c++)for(i=b[c].cells,d=0;d<i.length;d++){for(h=i[d],g=a(h),j=h.parentNode.rowIndex,k=j+"-"+g.index(),l=h.rowSpan||1,m=h.colSpan||1,"undefined"==typeof p[j]&&(p[j]=[]),e=0;e<p[j].length+1;e++)if("undefined"==typeof p[j][e]){n=e;break}for(q[k]=n,r=Math.max(n,r),g.attr({"data-column":n}),e=j;j+l>e;e++)for("undefined"==typeof p[e]&&(p[e]=[]),o=p[e],f=n;n+m>f;f++)o[f]="x"}return r+1},u.isProcessing=function(b,c,d){b=a(b);var e=b[0].config,f=d||b.find("."+u.css.header);c?("undefined"!=typeof d&&e.sortList.length>0&&(f=f.filter(function(){return this.sortDisabled?!1:u.isValueInArray(parseFloat(a(this).attr("data-column")),e.sortList)>=0})),b.add(f).addClass(u.css.processing+" "+e.cssProcessing)):b.add(f).removeClass(u.css.processing+" "+e.cssProcessing)},u.processTbody=function(b,c,d){b=a(b)[0];var e;return d?(b.isProcessing=!0,c.before('<span class="tablesorter-savemyplace"/>'),e=a.fn.detach?c.detach():c.remove()):(e=a(b).find("span.tablesorter-savemyplace"),c.insertAfter(e),e.remove(),void(b.isProcessing=!1))},u.clearTableBody=function(b){a(b)[0].config.$tbodies.children().detach()},u.bindEvents=function(b,c,e){b=a(b)[0];var f,h=b.config;e!==!0&&(h.$extraHeaders=h.$extraHeaders?h.$extraHeaders.add(c):c),c.find(h.selectorSort).add(c.filter(h.selectorSort)).unbind("mousedown mouseup sort keyup ".split(" ").join(h.namespace+" ").replace(/\s+/g," ")).bind("mousedown mouseup sort keyup ".split(" ").join(h.namespace+" "),function(e,i){var j,k=a(e.target),l=e.type;if(!(1!==(e.which||e.button)&&!/sort|keyup/.test(l)||"keyup"===l&&13!==e.which||"mouseup"===l&&i!==!0&&(new Date).getTime()-f>250)){if("mousedown"===l)return void(f=(new Date).getTime());if(j=a.fn.closest?k.closest("td,th"):k.parents("td,th").filter(":first"),/(input|select|button|textarea)/i.test(e.target.tagName)||k.hasClass(h.cssNoSort)||k.parents("."+h.cssNoSort).length>0||k.parents("button").length>0)return!h.cancelSelection;h.delayInit&&d(h.cache)&&g(b),j=a.fn.closest?a(this).closest("th, td")[0]:/TH|TD/.test(this.tagName)?this:a(this).parents("th, td")[0],j=h.$headers[c.index(j)],j.sortDisabled||p(b,j,e)}}),h.cancelSelection&&c.attr("unselectable","on").bind("selectstart",!1).css({"user-select":"none",MozUserSelect:"none"})},u.restoreHeaders=function(b){var c,d=a(b)[0].config;d.$table.find(d.selectorHeaders).each(function(b){c=a(this),c.find("."+u.css.headerIn).length&&c.html(d.headerContent[b])})},u.destroy=function(b,c,d){if(b=a(b)[0],b.hasInitialized){u.removeWidget(b,!0,!1);var e,f=a(b),g=b.config,h=f.find("thead:first"),i=h.find("tr."+u.css.headerRow).removeClass(u.css.headerRow+" "+g.cssHeaderRow),j=f.find("tfoot:first > tr").children("th, td");c===!1&&a.inArray("uitheme",g.widgets)>=0&&(f.trigger("applyWidgetId",["uitheme"]),f.trigger("applyWidgetId",["zebra"])),h.find("tr").not(i).remove(),e="sortReset update updateAll updateRows updateCell addRows updateComplete sorton appendCache updateCache "+"applyWidgetId applyWidgets refreshWidgets destroy mouseup mouseleave keypress sortBegin sortEnd resetToLoadState ".split(" ").join(g.namespace+" "),f.removeData("tablesorter").unbind(e.replace(/\s+/g," ")),g.$headers.add(j).removeClass([u.css.header,g.cssHeader,g.cssAsc,g.cssDesc,u.css.sortAsc,u.css.sortDesc,u.css.sortNone].join(" ")).removeAttr("data-column").removeAttr("aria-label").attr("aria-disabled","true"),i.find(g.selectorSort).unbind("mousedown mouseup keypress ".split(" ").join(g.namespace+" ").replace(/\s+/g," ")),u.restoreHeaders(b),f.toggleClass(u.css.table+" "+g.tableClass+" tablesorter-"+g.theme,c===!1),b.hasInitialized=!1,delete b.config.cache,"function"==typeof d&&d(b)}},u.regex={chunk:/(^([+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?)?$|^0x[0-9a-f]+$|\d+)/gi,chunks:/(^\\0|\\0$)/,hex:/^0x[0-9a-f]+$/i},u.sortNatural=function(a,b){if(a===b)return 0;var c,d,e,f,g,h,i,j,k=u.regex;if(k.hex.test(b)){if(d=parseInt(a.match(k.hex),16),f=parseInt(b.match(k.hex),16),f>d)return-1;if(d>f)return 1}for(c=a.replace(k.chunk,"\\0$1\\0").replace(k.chunks,"").split("\\0"),e=b.replace(k.chunk,"\\0$1\\0").replace(k.chunks,"").split("\\0"),j=Math.max(c.length,e.length),i=0;j>i;i++){if(g=isNaN(c[i])?c[i]||0:parseFloat(c[i])||0,h=isNaN(e[i])?e[i]||0:parseFloat(e[i])||0,isNaN(g)!==isNaN(h))return isNaN(g)?1:-1;if(typeof g!=typeof h&&(g+="",h+=""),h>g)return-1;if(g>h)return 1}return 0},u.sortNaturalAsc=function(a,b,c,d,e){if(a===b)return 0;var f=e.string[e.empties[c]||e.emptyTo];return""===a&&0!==f?"boolean"==typeof f?f?-1:1:-f||-1:""===b&&0!==f?"boolean"==typeof f?f?1:-1:f||1:u.sortNatural(a,b)},u.sortNaturalDesc=function(a,b,c,d,e){if(a===b)return 0;var f=e.string[e.empties[c]||e.emptyTo];return""===a&&0!==f?"boolean"==typeof f?f?-1:1:f||1:""===b&&0!==f?"boolean"==typeof f?f?1:-1:-f||-1:u.sortNatural(b,a)},u.sortText=function(a,b){return a>b?1:b>a?-1:0},u.getTextValue=function(a,b,c){if(c){var d,e=a?a.length:0,f=c+b;for(d=0;e>d;d++)f+=a.charCodeAt(d);return b*f}return 0},u.sortNumericAsc=function(a,b,c,d,e,f){if(a===b)return 0;var g=f.config,h=g.string[g.empties[e]||g.emptyTo];return""===a&&0!==h?"boolean"==typeof h?h?-1:1:-h||-1:""===b&&0!==h?"boolean"==typeof h?h?1:-1:h||1:(isNaN(a)&&(a=u.getTextValue(a,c,d)),isNaN(b)&&(b=u.getTextValue(b,c,d)),a-b)},u.sortNumericDesc=function(a,b,c,d,e,f){if(a===b)return 0;var g=f.config,h=g.string[g.empties[e]||g.emptyTo];return""===a&&0!==h?"boolean"==typeof h?h?-1:1:h||1:""===b&&0!==h?"boolean"==typeof h?h?1:-1:-h||-1:(isNaN(a)&&(a=u.getTextValue(a,c,d)),isNaN(b)&&(b=u.getTextValue(b,c,d)),b-a)},u.sortNumeric=function(a,b){return a-b},u.characterEquivalents={a:"áàâãäąå",A:"ÁÀÂÃÄĄÅ",c:"çćč",C:"ÇĆČ",e:"éèêëěę",E:"ÉÈÊËĚĘ",i:"íìİîïı",I:"ÍÌİÎÏ",o:"óòôõö",O:"ÓÒÔÕÖ",ss:"ß",SS:"ẞ",u:"úùûüů",U:"ÚÙÛÜŮ"},u.replaceAccents=function(a){var b,c="[",d=u.characterEquivalents;if(!u.characterRegex){u.characterRegexArray={};for(b in d)"string"==typeof b&&(c+=d[b],u.characterRegexArray[b]=new RegExp("["+d[b]+"]","g"));u.characterRegex=new RegExp(c+"]")}if(u.characterRegex.test(a))for(b in d)"string"==typeof b&&(a=a.replace(u.characterRegexArray[b],b));return a},u.isValueInArray=function(a,b){var c,d=b.length;for(c=0;d>c;c++)if(b[c][0]===a)return c;return-1},u.addParser=function(a){var b,c=u.parsers.length,d=!0;for(b=0;c>b;b++)u.parsers[b].id.toLowerCase()===a.id.toLowerCase()&&(d=!1);d&&u.parsers.push(a)},u.getParserById=function(a){if("false"==a)return!1;var b,c=u.parsers.length;for(b=0;c>b;b++)if(u.parsers[b].id.toLowerCase()===a.toString().toLowerCase())return u.parsers[b];return!1},u.addWidget=function(a){u.widgets.push(a)},u.hasWidget=function(b,c){return b=a(b),b.length&&b[0].config&&b[0].config.widgetInit[c]||!1},u.getWidgetById=function(a){var b,c,d=u.widgets.length;for(b=0;d>b;b++)if(c=u.widgets[b],c&&c.hasOwnProperty("id")&&c.id.toLowerCase()===a.toLowerCase())return c},u.applyWidget=function(b,d,e){b=a(b)[0];var f,g,h,i,j=b.config,k=j.widgetOptions,l=" "+j.table.className+" ",m=[];d!==!1&&b.hasInitialized&&(b.isApplyingWidgets||b.isUpdating)||(j.debug&&(f=new Date),i=new RegExp("\\s"+j.widgetClass.replace(/\{name\}/i,"([\\w-]+)")+"\\s","g"),l.match(i)&&(h=l.match(i),h&&a.each(h,function(a,b){j.widgets.push(b.replace(i,"$1"))})),j.widgets.length&&(b.isApplyingWidgets=!0,j.widgets=a.grep(j.widgets,function(b,c){return a.inArray(b,j.widgets)===c}),a.each(j.widgets||[],function(a,b){i=u.getWidgetById(b),i&&i.id&&(i.priority||(i.priority=10),m[a]=i)}),m.sort(function(a,b){return a.priority<b.priority?-1:a.priority===b.priority?0:1}),a.each(m,function(c,e){e&&((d||!j.widgetInit[e.id])&&(j.widgetInit[e.id]=!0,e.hasOwnProperty("options")&&(k=b.config.widgetOptions=a.extend(!0,{},e.options,k)),e.hasOwnProperty("init")&&(j.debug&&(g=new Date),e.init(b,e,j,k),j.debug&&u.benchmark("Initializing "+e.id+" widget",g))),!d&&e.hasOwnProperty("format")&&(j.debug&&(g=new Date),e.format(b,j,k,!1),j.debug&&u.benchmark((d?"Initializing ":"Applying ")+e.id+" widget",g)))}),d||"function"!=typeof e||e(b)),setTimeout(function(){b.isApplyingWidgets=!1,a.data(b,"lastWidgetApplication",new Date)},0),j.debug&&(h=j.widgets.length,c("Completed "+(d===!0?"initializing ":"applying ")+h+" widget"+(1!==h?"s":""),f)))},u.removeWidget=function(c,d,e){c=a(c)[0],d===!0?(d=[],a.each(u.widgets,function(a,b){b&&b.id&&d.push(b.id)})):d=(a.isArray(d)?d.join(","):d||"").toLowerCase().split(/[\s,]+/);var f,g,h,i=c.config,j=d.length;for(f=0;j>f;f++)g=u.getWidgetById(d[f]),h=a.inArray(d[f],i.widgets),g&&"remove"in g&&(i.debug&&h>=0&&b('Removing "'+d[f]+'" widget'),g.remove(c,i,i.widgetOptions,e),i.widgetInit[d[f]]=!1),h>=0&&e!==!0&&i.widgets.splice(h,1)},u.refreshWidgets=function(b,c,d){b=a(b)[0];var e=b.config,f=e.widgets,g=[],h=function(b){a(b).trigger("refreshComplete")};a.each(u.widgets,function(b,d){d&&d.id&&(c||a.inArray(d.id,f)<0)&&g.push(d.id)}),u.removeWidget(b,g.join(","),!0),d!==!0?(u.applyWidget(b,c||!1,h),c&&u.applyWidget(b,!1,h)):h(b)},u.getData=function(b,c,d){var e,f,g="",h=a(b);return h.length?(e=a.metadata?h.metadata():!1,f=" "+(h.attr("class")||""),"undefined"!=typeof h.data(d)||"undefined"!=typeof h.data(d.toLowerCase())?g+=h.data(d)||h.data(d.toLowerCase()):e&&"undefined"!=typeof e[d]?g+=e[d]:c&&"undefined"!=typeof c[d]?g+=c[d]:" "!==f&&f.match(" "+d+"-")&&(g=f.match(new RegExp("\\s"+d+"-([\\w-]+)"))[1]||""),a.trim(g)):""},u.formatFloat=function(b,c){if("string"!=typeof b||""===b)return b;var d,e=c&&c.config?c.config.usNumberFormat!==!1:"undefined"!=typeof c?c:!0;return b=e?b.replace(/,/g,""):b.replace(/[\s|\.]/g,"").replace(/,/g,"."),/^\s*\([.\d]+\)/.test(b)&&(b=b.replace(/^\s*\(([.\d]+)\)/,"-$1")),d=parseFloat(b),isNaN(d)?a.trim(b):d},u.isDigit=function(a){return isNaN(a)?/^[\-+(]?\d+[)]?$/.test(a.toString().replace(/[,.'"\s]/g,"")):!0}}});var b=a.tablesorter;return a.fn.extend({tablesorter:b.construct}),b.addParser({id:"no-parser",is:function(){return!1},format:function(){return""},type:"text"}),b.addParser({id:"text",is:function(){return!0},format:function(c,d){var e=d.config;return c&&(c=a.trim(e.ignoreCase?c.toLocaleLowerCase():c),c=e.sortLocaleCompare?b.replaceAccents(c):c),c},type:"text"}),b.addParser({id:"digit",is:function(a){return b.isDigit(a)},format:function(c,d){var e=b.formatFloat((c||"").replace(/[^\w,. \-()]/g,""),d);return c&&"number"==typeof e?e:c?a.trim(c&&d.config.ignoreCase?c.toLocaleLowerCase():c):c},type:"numeric"}),b.addParser({id:"currency",is:function(a){return/^\(?\d+[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]|[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]\d+\)?$/.test((a||"").replace(/[+\-,. ]/g,""))},format:function(c,d){var e=b.formatFloat((c||"").replace(/[^\w,. \-()]/g,""),d);return c&&"number"==typeof e?e:c?a.trim(c&&d.config.ignoreCase?c.toLocaleLowerCase():c):c},type:"numeric"}),b.addParser({id:"url",is:function(a){return/^(https?|ftp|file):\/\//.test(a)},format:function(b){return b?a.trim(b.replace(/(https?|ftp|file):\/\//,"")):b},parsed:!0,type:"text"}),b.addParser({id:"isoDate",is:function(a){return/^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}/.test(a)},format:function(a){var b=a?new Date(a.replace(/-/g,"/")):a;return b instanceof Date&&isFinite(b)?b.getTime():a},type:"numeric"}),b.addParser({id:"percent",is:function(a){return/(\d\s*?%|%\s*?\d)/.test(a)&&a.length<15},format:function(a,c){return a?b.formatFloat(a.replace(/%/g,""),c):a},type:"numeric"}),b.addParser({id:"image",is:function(a,b,c,d){return d.find("img").length>0},format:function(b,c,d){return a(d).find("img").attr(c.config.imgAttr||"alt")||b},parsed:!0,type:"text"}),b.addParser({id:"usLongDate",is:function(a){return/^[A-Z]{3,10}\.?\s+\d{1,2},?\s+(\d{4})(\s+\d{1,2}:\d{2}(:\d{2})?(\s+[AP]M)?)?$/i.test(a)||/^\d{1,2}\s+[A-Z]{3,10}\s+\d{4}/i.test(a)},format:function(a){var b=a?new Date(a.replace(/(\S)([AP]M)$/i,"$1 $2")):a;return b instanceof Date&&isFinite(b)?b.getTime():a},type:"numeric"}),b.addParser({id:"shortDate",is:function(a){return/(^\d{1,2}[\/\s]\d{1,2}[\/\s]\d{4})|(^\d{4}[\/\s]\d{1,2}[\/\s]\d{1,2})/.test((a||"").replace(/\s+/g," ").replace(/[\-.,]/g,"/"))},format:function(a,c,d,e){if(a){var f,g,h=c.config,i=h.$headers.filter('[data-column="'+e+'"]:last'),j=i.length&&i[0].dateFormat||b.getData(i,b.getColumnData(c,h.headers,e),"dateFormat")||h.dateFormat;return g=a.replace(/\s+/g," ").replace(/[\-.,]/g,"/"),"mmddyyyy"===j?g=g.replace(/(\d{1,2})[\/\s](\d{1,2})[\/\s](\d{4})/,"$3/$1/$2"):"ddmmyyyy"===j?g=g.replace(/(\d{1,2})[\/\s](\d{1,2})[\/\s](\d{4})/,"$3/$2/$1"):"yyyymmdd"===j&&(g=g.replace(/(\d{4})[\/\s](\d{1,2})[\/\s](\d{1,2})/,"$1/$2/$3")),f=new Date(g),f instanceof Date&&isFinite(f)?f.getTime():a}return a},type:"numeric"}),b.addParser({id:"time",is:function(a){return/^(([0-2]?\d:[0-5]\d)|([0-1]?\d:[0-5]\d\s?([AP]M)))$/i.test(a)},format:function(a){var b=a?new Date("2000/01/01 "+a.replace(/(\S)([AP]M)$/i,"$1 $2")):a;return b instanceof Date&&isFinite(b)?b.getTime():a},type:"numeric"}),b.addParser({id:"metadata",is:function(){return!1
|
||
},format:function(b,c,d){var e=c.config,f=e.parserMetadataName?e.parserMetadataName:"sortValue";return a(d).metadata()[f]},type:"numeric"}),b.addWidget({id:"zebra",priority:90,format:function(b,c,d){var e,f,g,h,i,j,k,l=new RegExp(c.cssChildRow,"i"),m=c.$tbodies;for(c.debug&&(j=new Date),k=0;k<m.length;k++)h=0,e=m.eq(k),f=e.children("tr:visible").not(c.selectorRemove),f.each(function(){g=a(this),l.test(this.className)||h++,i=h%2===0,g.removeClass(d.zebra[i?1:0]).addClass(d.zebra[i?0:1])})},remove:function(a,c,d,e){if(!e){var f,g,h=c.$tbodies,i=(d.zebra||["even","odd"]).join(" ");for(f=0;f<h.length;f++)g=b.processTbody(a,h.eq(f),!0),g.children().removeClass(i),b.processTbody(a,g,!1)}}}),b});;/*! jQuery Validation Plugin - v1.13.1 - 10/14/2014
|
||
* http://jqueryvalidation.org/
|
||
* Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */
|
||
!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){a.extend(a.fn,{validate:function(b){if(!this.length)return void(b&&b.debug&&window.console&&console.warn("Nothing selected, can't validate, returning nothing."));var c=a.data(this[0],"validator");return c?c:(this.attr("novalidate","novalidate"),c=new a.validator(b,this[0]),a.data(this[0],"validator",c),c.settings.onsubmit&&(this.validateDelegate(":submit","click",function(b){c.settings.submitHandler&&(c.submitButton=b.target),a(b.target).hasClass("cancel")&&(c.cancelSubmit=!0),void 0!==a(b.target).attr("formnovalidate")&&(c.cancelSubmit=!0)}),this.submit(function(b){function d(){var d,e;return c.settings.submitHandler?(c.submitButton&&(d=a("<input type='hidden'/>").attr("name",c.submitButton.name).val(a(c.submitButton).val()).appendTo(c.currentForm)),e=c.settings.submitHandler.call(c,c.currentForm,b),c.submitButton&&d.remove(),void 0!==e?e:!1):!0}return c.settings.debug&&b.preventDefault(),c.cancelSubmit?(c.cancelSubmit=!1,d()):c.form()?c.pendingRequest?(c.formSubmitted=!0,!1):d():(c.focusInvalid(),!1)})),c)},valid:function(){var b,c;return a(this[0]).is("form")?b=this.validate().form():(b=!0,c=a(this[0].form).validate(),this.each(function(){b=c.element(this)&&b})),b},removeAttrs:function(b){var c={},d=this;return a.each(b.split(/\s/),function(a,b){c[b]=d.attr(b),d.removeAttr(b)}),c},rules:function(b,c){var d,e,f,g,h,i,j=this[0];if(b)switch(d=a.data(j.form,"validator").settings,e=d.rules,f=a.validator.staticRules(j),b){case"add":a.extend(f,a.validator.normalizeRule(c)),delete f.messages,e[j.name]=f,c.messages&&(d.messages[j.name]=a.extend(d.messages[j.name],c.messages));break;case"remove":return c?(i={},a.each(c.split(/\s/),function(b,c){i[c]=f[c],delete f[c],"required"===c&&a(j).removeAttr("aria-required")}),i):(delete e[j.name],f)}return g=a.validator.normalizeRules(a.extend({},a.validator.classRules(j),a.validator.attributeRules(j),a.validator.dataRules(j),a.validator.staticRules(j)),j),g.required&&(h=g.required,delete g.required,g=a.extend({required:h},g),a(j).attr("aria-required","true")),g.remote&&(h=g.remote,delete g.remote,g=a.extend(g,{remote:h})),g}}),a.extend(a.expr[":"],{blank:function(b){return!a.trim(""+a(b).val())},filled:function(b){return!!a.trim(""+a(b).val())},unchecked:function(b){return!a(b).prop("checked")}}),a.validator=function(b,c){this.settings=a.extend(!0,{},a.validator.defaults,b),this.currentForm=c,this.init()},a.validator.format=function(b,c){return 1===arguments.length?function(){var c=a.makeArray(arguments);return c.unshift(b),a.validator.format.apply(this,c)}:(arguments.length>2&&c.constructor!==Array&&(c=a.makeArray(arguments).slice(1)),c.constructor!==Array&&(c=[c]),a.each(c,function(a,c){b=b.replace(new RegExp("\\{"+a+"\\}","g"),function(){return c})}),b)},a.extend(a.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusCleanup:!1,focusInvalid:!0,errorContainer:a([]),errorLabelContainer:a([]),onsubmit:!0,ignore:":hidden",ignoreTitle:!1,onfocusin:function(a){this.lastActive=a,this.settings.focusCleanup&&(this.settings.unhighlight&&this.settings.unhighlight.call(this,a,this.settings.errorClass,this.settings.validClass),this.hideThese(this.errorsFor(a)))},onfocusout:function(a){this.checkable(a)||!(a.name in this.submitted)&&this.optional(a)||this.element(a)},onkeyup:function(a,b){(9!==b.which||""!==this.elementValue(a))&&(a.name in this.submitted||a===this.lastElement)&&this.element(a)},onclick:function(a){a.name in this.submitted?this.element(a):a.parentNode.name in this.submitted&&this.element(a.parentNode)},highlight:function(b,c,d){"radio"===b.type?this.findByName(b.name).addClass(c).removeClass(d):a(b).addClass(c).removeClass(d)},unhighlight:function(b,c,d){"radio"===b.type?this.findByName(b.name).removeClass(c).addClass(d):a(b).removeClass(c).addClass(d)}},setDefaults:function(b){a.extend(a.validator.defaults,b)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date ( ISO ).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",maxlength:a.validator.format("Please enter no more than {0} characters."),minlength:a.validator.format("Please enter at least {0} characters."),rangelength:a.validator.format("Please enter a value between {0} and {1} characters long."),range:a.validator.format("Please enter a value between {0} and {1}."),max:a.validator.format("Please enter a value less than or equal to {0}."),min:a.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:!1,prototype:{init:function(){function b(b){var c=a.data(this[0].form,"validator"),d="on"+b.type.replace(/^validate/,""),e=c.settings;e[d]&&!this.is(e.ignore)&&e[d].call(c,this[0],b)}this.labelContainer=a(this.settings.errorLabelContainer),this.errorContext=this.labelContainer.length&&this.labelContainer||a(this.currentForm),this.containers=a(this.settings.errorContainer).add(this.settings.errorLabelContainer),this.submitted={},this.valueCache={},this.pendingRequest=0,this.pending={},this.invalid={},this.reset();var c,d=this.groups={};a.each(this.settings.groups,function(b,c){"string"==typeof c&&(c=c.split(/\s/)),a.each(c,function(a,c){d[c]=b})}),c=this.settings.rules,a.each(c,function(b,d){c[b]=a.validator.normalizeRule(d)}),a(this.currentForm).validateDelegate(":text, [type='password'], [type='file'], select, textarea, [type='number'], [type='search'] ,[type='tel'], [type='url'], [type='email'], [type='datetime'], [type='date'], [type='month'], [type='week'], [type='time'], [type='datetime-local'], [type='range'], [type='color'], [type='radio'], [type='checkbox']","focusin focusout keyup",b).validateDelegate("select, option, [type='radio'], [type='checkbox']","click",b),this.settings.invalidHandler&&a(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler),a(this.currentForm).find("[required], [data-rule-required], .required").attr("aria-required","true")},form:function(){return this.checkForm(),a.extend(this.submitted,this.errorMap),this.invalid=a.extend({},this.errorMap),this.valid()||a(this.currentForm).triggerHandler("invalid-form",[this]),this.showErrors(),this.valid()},checkForm:function(){this.prepareForm();for(var a=0,b=this.currentElements=this.elements();b[a];a++)this.check(b[a]);return this.valid()},element:function(b){var c=this.clean(b),d=this.validationTargetFor(c),e=!0;return this.lastElement=d,void 0===d?delete this.invalid[c.name]:(this.prepareElement(d),this.currentElements=a(d),e=this.check(d)!==!1,e?delete this.invalid[d.name]:this.invalid[d.name]=!0),a(b).attr("aria-invalid",!e),this.numberOfInvalids()||(this.toHide=this.toHide.add(this.containers)),this.showErrors(),e},showErrors:function(b){if(b){a.extend(this.errorMap,b),this.errorList=[];for(var c in b)this.errorList.push({message:b[c],element:this.findByName(c)[0]});this.successList=a.grep(this.successList,function(a){return!(a.name in b)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){a.fn.resetForm&&a(this.currentForm).resetForm(),this.submitted={},this.lastElement=null,this.prepareForm(),this.hideErrors(),this.elements().removeClass(this.settings.errorClass).removeData("previousValue").removeAttr("aria-invalid")},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(a){var b,c=0;for(b in a)c++;return c},hideErrors:function(){this.hideThese(this.toHide)},hideThese:function(a){a.not(this.containers).text(""),this.addWrapper(a).hide()},valid:function(){return 0===this.size()},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{a(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(b){}},findLastActive:function(){var b=this.lastActive;return b&&1===a.grep(this.errorList,function(a){return a.element.name===b.name}).length&&b},elements:function(){var b=this,c={};return a(this.currentForm).find("input, select, textarea").not(":submit, :reset, :image, [disabled], [readonly]").not(this.settings.ignore).filter(function(){return!this.name&&b.settings.debug&&window.console&&console.error("%o has no name assigned",this),this.name in c||!b.objectLength(a(this).rules())?!1:(c[this.name]=!0,!0)})},clean:function(b){return a(b)[0]},errors:function(){var b=this.settings.errorClass.split(" ").join(".");return a(this.settings.errorElement+"."+b,this.errorContext)},reset:function(){this.successList=[],this.errorList=[],this.errorMap={},this.toShow=a([]),this.toHide=a([]),this.currentElements=a([])},prepareForm:function(){this.reset(),this.toHide=this.errors().add(this.containers)},prepareElement:function(a){this.reset(),this.toHide=this.errorsFor(a)},elementValue:function(b){var c,d=a(b),e=b.type;return"radio"===e||"checkbox"===e?a("input[name='"+b.name+"']:checked").val():"number"===e&&"undefined"!=typeof b.validity?b.validity.badInput?!1:d.val():(c=d.val(),"string"==typeof c?c.replace(/\r/g,""):c)},check:function(b){b=this.validationTargetFor(this.clean(b));var c,d,e,f=a(b).rules(),g=a.map(f,function(a,b){return b}).length,h=!1,i=this.elementValue(b);for(d in f){e={method:d,parameters:f[d]};try{if(c=a.validator.methods[d].call(this,i,b,e.parameters),"dependency-mismatch"===c&&1===g){h=!0;continue}if(h=!1,"pending"===c)return void(this.toHide=this.toHide.not(this.errorsFor(b)));if(!c)return this.formatAndAdd(b,e),!1}catch(j){throw this.settings.debug&&window.console&&console.log("Exception occurred when checking element "+b.id+", check the '"+e.method+"' method.",j),j}}if(!h)return this.objectLength(f)&&this.successList.push(b),!0},customDataMessage:function(b,c){return a(b).data("msg"+c.charAt(0).toUpperCase()+c.substring(1).toLowerCase())||a(b).data("msg")},customMessage:function(a,b){var c=this.settings.messages[a];return c&&(c.constructor===String?c:c[b])},findDefined:function(){for(var a=0;a<arguments.length;a++)if(void 0!==arguments[a])return arguments[a];return void 0},defaultMessage:function(b,c){return this.findDefined(this.customMessage(b.name,c),this.customDataMessage(b,c),!this.settings.ignoreTitle&&b.title||void 0,a.validator.messages[c],"<strong>Warning: No message defined for "+b.name+"</strong>")},formatAndAdd:function(b,c){var d=this.defaultMessage(b,c.method),e=/\$?\{(\d+)\}/g;"function"==typeof d?d=d.call(this,c.parameters,b):e.test(d)&&(d=a.validator.format(d.replace(e,"{$1}"),c.parameters)),this.errorList.push({message:d,element:b,method:c.method}),this.errorMap[b.name]=d,this.submitted[b.name]=d},addWrapper:function(a){return this.settings.wrapper&&(a=a.add(a.parent(this.settings.wrapper))),a},defaultShowErrors:function(){var a,b,c;for(a=0;this.errorList[a];a++)c=this.errorList[a],this.settings.highlight&&this.settings.highlight.call(this,c.element,this.settings.errorClass,this.settings.validClass),this.showLabel(c.element,c.message);if(this.errorList.length&&(this.toShow=this.toShow.add(this.containers)),this.settings.success)for(a=0;this.successList[a];a++)this.showLabel(this.successList[a]);if(this.settings.unhighlight)for(a=0,b=this.validElements();b[a];a++)this.settings.unhighlight.call(this,b[a],this.settings.errorClass,this.settings.validClass);this.toHide=this.toHide.not(this.toShow),this.hideErrors(),this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return a(this.errorList).map(function(){return this.element})},showLabel:function(b,c){var d,e,f,g=this.errorsFor(b),h=this.idOrName(b),i=a(b).attr("aria-describedby");g.length?(g.removeClass(this.settings.validClass).addClass(this.settings.errorClass),g.html(c)):(g=a("<"+this.settings.errorElement+">").attr("id",h+"-error").addClass(this.settings.errorClass).html(c||""),d=g,this.settings.wrapper&&(d=g.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()),this.labelContainer.length?this.labelContainer.append(d):this.settings.errorPlacement?this.settings.errorPlacement(d,a(b)):d.insertAfter(b),g.is("label")?g.attr("for",h):0===g.parents("label[for='"+h+"']").length&&(f=g.attr("id").replace(/(:|\.|\[|\])/g,"\\$1"),i?i.match(new RegExp("\\b"+f+"\\b"))||(i+=" "+f):i=f,a(b).attr("aria-describedby",i),e=this.groups[b.name],e&&a.each(this.groups,function(b,c){c===e&&a("[name='"+b+"']",this.currentForm).attr("aria-describedby",g.attr("id"))}))),!c&&this.settings.success&&(g.text(""),"string"==typeof this.settings.success?g.addClass(this.settings.success):this.settings.success(g,b)),this.toShow=this.toShow.add(g)},errorsFor:function(b){var c=this.idOrName(b),d=a(b).attr("aria-describedby"),e="label[for='"+c+"'], label[for='"+c+"'] *";return d&&(e=e+", #"+d.replace(/\s+/g,", #")),this.errors().filter(e)},idOrName:function(a){return this.groups[a.name]||(this.checkable(a)?a.name:a.id||a.name)},validationTargetFor:function(b){return this.checkable(b)&&(b=this.findByName(b.name)),a(b).not(this.settings.ignore)[0]},checkable:function(a){return/radio|checkbox/i.test(a.type)},findByName:function(b){return a(this.currentForm).find("[name='"+b+"']")},getLength:function(b,c){switch(c.nodeName.toLowerCase()){case"select":return a("option:selected",c).length;case"input":if(this.checkable(c))return this.findByName(c.name).filter(":checked").length}return b.length},depend:function(a,b){return this.dependTypes[typeof a]?this.dependTypes[typeof a](a,b):!0},dependTypes:{"boolean":function(a){return a},string:function(b,c){return!!a(b,c.form).length},"function":function(a,b){return a(b)}},optional:function(b){var c=this.elementValue(b);return!a.validator.methods.required.call(this,c,b)&&"dependency-mismatch"},startRequest:function(a){this.pending[a.name]||(this.pendingRequest++,this.pending[a.name]=!0)},stopRequest:function(b,c){this.pendingRequest--,this.pendingRequest<0&&(this.pendingRequest=0),delete this.pending[b.name],c&&0===this.pendingRequest&&this.formSubmitted&&this.form()?(a(this.currentForm).submit(),this.formSubmitted=!1):!c&&0===this.pendingRequest&&this.formSubmitted&&(a(this.currentForm).triggerHandler("invalid-form",[this]),this.formSubmitted=!1)},previousValue:function(b){return a.data(b,"previousValue")||a.data(b,"previousValue",{old:null,valid:!0,message:this.defaultMessage(b,"remote")})}},classRuleSettings:{required:{required:!0},email:{email:!0},url:{url:!0},date:{date:!0},dateISO:{dateISO:!0},number:{number:!0},digits:{digits:!0},creditcard:{creditcard:!0}},addClassRules:function(b,c){b.constructor===String?this.classRuleSettings[b]=c:a.extend(this.classRuleSettings,b)},classRules:function(b){var c={},d=a(b).attr("class");return d&&a.each(d.split(" "),function(){this in a.validator.classRuleSettings&&a.extend(c,a.validator.classRuleSettings[this])}),c},attributeRules:function(b){var c,d,e={},f=a(b),g=b.getAttribute("type");for(c in a.validator.methods)"required"===c?(d=b.getAttribute(c),""===d&&(d=!0),d=!!d):d=f.attr(c),/min|max/.test(c)&&(null===g||/number|range|text/.test(g))&&(d=Number(d)),d||0===d?e[c]=d:g===c&&"range"!==g&&(e[c]=!0);return e.maxlength&&/-1|2147483647|524288/.test(e.maxlength)&&delete e.maxlength,e},dataRules:function(b){var c,d,e={},f=a(b);for(c in a.validator.methods)d=f.data("rule"+c.charAt(0).toUpperCase()+c.substring(1).toLowerCase()),void 0!==d&&(e[c]=d);return e},staticRules:function(b){var c={},d=a.data(b.form,"validator");return d.settings.rules&&(c=a.validator.normalizeRule(d.settings.rules[b.name])||{}),c},normalizeRules:function(b,c){return a.each(b,function(d,e){if(e===!1)return void delete b[d];if(e.param||e.depends){var f=!0;switch(typeof e.depends){case"string":f=!!a(e.depends,c.form).length;break;case"function":f=e.depends.call(c,c)}f?b[d]=void 0!==e.param?e.param:!0:delete b[d]}}),a.each(b,function(d,e){b[d]=a.isFunction(e)?e(c):e}),a.each(["minlength","maxlength"],function(){b[this]&&(b[this]=Number(b[this]))}),a.each(["rangelength","range"],function(){var c;b[this]&&(a.isArray(b[this])?b[this]=[Number(b[this][0]),Number(b[this][1])]:"string"==typeof b[this]&&(c=b[this].replace(/[\[\]]/g,"").split(/[\s,]+/),b[this]=[Number(c[0]),Number(c[1])]))}),a.validator.autoCreateRanges&&(null!=b.min&&null!=b.max&&(b.range=[b.min,b.max],delete b.min,delete b.max),null!=b.minlength&&null!=b.maxlength&&(b.rangelength=[b.minlength,b.maxlength],delete b.minlength,delete b.maxlength)),b},normalizeRule:function(b){if("string"==typeof b){var c={};a.each(b.split(/\s/),function(){c[this]=!0}),b=c}return b},addMethod:function(b,c,d){a.validator.methods[b]=c,a.validator.messages[b]=void 0!==d?d:a.validator.messages[b],c.length<3&&a.validator.addClassRules(b,a.validator.normalizeRule(b))},methods:{required:function(b,c,d){if(!this.depend(d,c))return"dependency-mismatch";if("select"===c.nodeName.toLowerCase()){var e=a(c).val();return e&&e.length>0}return this.checkable(c)?this.getLength(b,c)>0:a.trim(b).length>0},email:function(a,b){return this.optional(b)||/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test(a)},url:function(a,b){return this.optional(b)||/^(https?|s?ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(a)},date:function(a,b){return this.optional(b)||!/Invalid|NaN/.test(new Date(a).toString())},dateISO:function(a,b){return this.optional(b)||/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(a)},digits:function(a,b){return this.optional(b)||/^\d+$/.test(a)},creditcard:function(a,b){if(this.optional(b))return"dependency-mismatch";if(/[^0-9 \-]+/.test(a))return!1;var c,d,e=0,f=0,g=!1;if(a=a.replace(/\D/g,""),a.length<13||a.length>19)return!1;for(c=a.length-1;c>=0;c--)d=a.charAt(c),f=parseInt(d,10),g&&(f*=2)>9&&(f-=9),e+=f,g=!g;return e%10===0},minlength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(b,c);return this.optional(c)||e>=d},maxlength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(b,c);return this.optional(c)||d>=e},rangelength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(b,c);return this.optional(c)||e>=d[0]&&e<=d[1]},min:function(a,b,c){return this.optional(b)||a>=c},max:function(a,b,c){return this.optional(b)||c>=a},range:function(a,b,c){return this.optional(b)||a>=c[0]&&a<=c[1]},equalTo:function(b,c,d){var e=a(d);return this.settings.onfocusout&&e.unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){a(c).valid()}),b===e.val()},remote:function(b,c,d){if(this.optional(c))return"dependency-mismatch";var e,f,g=this.previousValue(c);return this.settings.messages[c.name]||(this.settings.messages[c.name]={}),g.originalMessage=this.settings.messages[c.name].remote,this.settings.messages[c.name].remote=g.message,d="string"==typeof d&&{url:d}||d,g.old===b?g.valid:(g.old=b,e=this,this.startRequest(c),f={},f[c.name]=b,a.ajax(a.extend(!0,{url:d,mode:"abort",port:"validate"+c.name,dataType:"json",data:f,context:e.currentForm,success:function(d){var f,h,i,j=d===!0||"true"===d;e.settings.messages[c.name].remote=g.originalMessage,j?(i=e.formSubmitted,e.prepareElement(c),e.formSubmitted=i,e.successList.push(c),delete e.invalid[c.name],e.showErrors()):(f={},h=d||e.defaultMessage(c,"remote"),f[c.name]=g.message=a.isFunction(h)?h(b):h,e.invalid[c.name]=!0,e.showErrors(f)),g.valid=j,e.stopRequest(c,j)}},d)),"pending")}}}),a.format=function(){throw"$.format has been deprecated. Please use $.validator.format instead."};var b,c={};a.ajaxPrefilter?a.ajaxPrefilter(function(a,b,d){var e=a.port;"abort"===a.mode&&(c[e]&&c[e].abort(),c[e]=d)}):(b=a.ajax,a.ajax=function(d){var e=("mode"in d?d:a.ajaxSettings).mode,f=("port"in d?d:a.ajaxSettings).port;return"abort"===e?(c[f]&&c[f].abort(),c[f]=b.apply(this,arguments),c[f]):b.apply(this,arguments)}),a.extend(a.fn,{validateDelegate:function(b,c,d){return this.bind(c,function(c){var e=a(c.target);return e.is(b)?d.apply(e,arguments):void 0})}})});;function get_dimensions()
|
||
{
|
||
var dims = {width:0,height:0};
|
||
|
||
if( typeof( window.innerWidth ) == 'number' ) {
|
||
//Non-IE
|
||
dims.width = window.innerWidth;
|
||
dims.height = window.innerHeight;
|
||
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
|
||
//IE 6+ in 'standards compliant mode'
|
||
dims.width = document.documentElement.clientWidth;
|
||
dims.height = document.documentElement.clientHeight;
|
||
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
|
||
//IE 4 compatible
|
||
dims.width = document.body.clientWidth;
|
||
dims.height = document.body.clientHeight;
|
||
}
|
||
|
||
return dims;
|
||
}
|
||
|
||
function set_feedback(text, classname, keep_displayed)
|
||
{
|
||
if(text)
|
||
{
|
||
$('#feedback_bar').removeClass().addClass(classname).html(text).css('opacity','1');
|
||
|
||
if(!keep_displayed)
|
||
{
|
||
$('#feedback_bar').fadeTo(5000, 1).fadeTo("fast",0);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
$('#feedback_bar').css('opacity','0');
|
||
}
|
||
}
|
||
|
||
;(function($){
|
||
//keylisteners
|
||
$.each(['customers', 'items', 'reports', 'receivings', 'sales', 'employees', 'config', 'giftcards'], function(key, value) {
|
||
$(window).jkey('f' + (key+1), function(){
|
||
window.location = BASE_URL + '/' + value + '/index';
|
||
});
|
||
});
|
||
})(jQuery);
|
||
;/*
|
||
* Date prototype extensions. Doesn't depend on any
|
||
* other code. Doens't overwrite existing methods.
|
||
*
|
||
* Adds dayNames, abbrDayNames, monthNames and abbrMonthNames static properties and isLeapYear,
|
||
* isWeekend, isWeekDay, getDaysInMonth, getDayName, getMonthName, getDayOfYear, getWeekOfYear,
|
||
* setDayOfYear, addYears, addMonths, addDays, addHours, addMinutes, addSeconds methods
|
||
*
|
||
* Copyright (c) 2006 Jörn Zaefferer and Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net)
|
||
*
|
||
* Additional methods and properties added by Kelvin Luck: firstDayOfWeek, dateFormat, zeroTime, asString, fromString -
|
||
* I've added my name to these methods so you know who to blame if they are broken!
|
||
*
|
||
* Dual licensed under the MIT and GPL licenses:
|
||
* http://www.opensource.org/licenses/mit-license.php
|
||
* http://www.gnu.org/licenses/gpl.html
|
||
*
|
||
*/
|
||
|
||
/**
|
||
* An Array of day names starting with Sunday.
|
||
*
|
||
* @example dayNames[0]
|
||
* @result 'Sunday'
|
||
*
|
||
* @name dayNames
|
||
* @type Array
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
Date.dayNames = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
|
||
|
||
/**
|
||
* An Array of abbreviated day names starting with Sun.
|
||
*
|
||
* @example abbrDayNames[0]
|
||
* @result 'Sun'
|
||
*
|
||
* @name abbrDayNames
|
||
* @type Array
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
Date.abbrDayNames = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];
|
||
|
||
/**
|
||
* An Array of month names starting with Janurary.
|
||
*
|
||
* @example monthNames[0]
|
||
* @result 'January'
|
||
*
|
||
* @name monthNames
|
||
* @type Array
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
Date.monthNames = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
|
||
|
||
/**
|
||
* An Array of abbreviated month names starting with Jan.
|
||
*
|
||
* @example abbrMonthNames[0]
|
||
* @result 'Jan'
|
||
*
|
||
* @name monthNames
|
||
* @type Array
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
Date.abbrMonthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||
|
||
/**
|
||
* The first day of the week for this locale.
|
||
*
|
||
* @name firstDayOfWeek
|
||
* @type Number
|
||
* @cat Plugins/Methods/Date
|
||
* @author Kelvin Luck
|
||
*/
|
||
Date.firstDayOfWeek = 1;
|
||
|
||
/**
|
||
* The format that string dates should be represented as (e.g. 'dd/mm/yyyy' for UK, 'mm/dd/yyyy' for US, 'yyyy-mm-dd' for Unicode etc).
|
||
*
|
||
* @name format
|
||
* @type String
|
||
* @cat Plugins/Methods/Date
|
||
* @author Kelvin Luck
|
||
*/
|
||
Date.format = 'mm/dd/yyyy';
|
||
//Date.format = 'mm/dd/yyyy';
|
||
//Date.format = 'yyyy-mm-dd';
|
||
//Date.format = 'dd mmm yy';
|
||
|
||
/**
|
||
* The first two numbers in the century to be used when decoding a two digit year. Since a two digit year is ambiguous (and date.setYear
|
||
* only works with numbers < 99 and so doesn't allow you to set years after 2000) we need to use this to disambiguate the two digit year codes.
|
||
*
|
||
* @name format
|
||
* @type String
|
||
* @cat Plugins/Methods/Date
|
||
* @author Kelvin Luck
|
||
*/
|
||
Date.fullYearStart = '20';
|
||
|
||
(function() {
|
||
|
||
/**
|
||
* Adds a given method under the given name
|
||
* to the Date prototype if it doesn't
|
||
* currently exist.
|
||
*
|
||
* @private
|
||
*/
|
||
function add(name, method) {
|
||
if( !Date.prototype[name] ) {
|
||
Date.prototype[name] = method;
|
||
}
|
||
};
|
||
|
||
/**
|
||
* Checks if the year is a leap year.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.isLeapYear();
|
||
* @result true
|
||
*
|
||
* @name isLeapYear
|
||
* @type Boolean
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("isLeapYear", function() {
|
||
var y = this.getFullYear();
|
||
return (y%4==0 && y%100!=0) || y%400==0;
|
||
});
|
||
|
||
/**
|
||
* Checks if the day is a weekend day (Sat or Sun).
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.isWeekend();
|
||
* @result false
|
||
*
|
||
* @name isWeekend
|
||
* @type Boolean
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("isWeekend", function() {
|
||
return this.getDay()==0 || this.getDay()==6;
|
||
});
|
||
|
||
/**
|
||
* Check if the day is a day of the week (Mon-Fri)
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.isWeekDay();
|
||
* @result false
|
||
*
|
||
* @name isWeekDay
|
||
* @type Boolean
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("isWeekDay", function() {
|
||
return !this.isWeekend();
|
||
});
|
||
|
||
/**
|
||
* Gets the number of days in the month.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.getDaysInMonth();
|
||
* @result 31
|
||
*
|
||
* @name getDaysInMonth
|
||
* @type Number
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("getDaysInMonth", function() {
|
||
return [31,(this.isLeapYear() ? 29:28),31,30,31,30,31,31,30,31,30,31][this.getMonth()];
|
||
});
|
||
|
||
/**
|
||
* Gets the name of the day.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.getDayName();
|
||
* @result 'Saturday'
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.getDayName(true);
|
||
* @result 'Sat'
|
||
*
|
||
* @param abbreviated Boolean When set to true the name will be abbreviated.
|
||
* @name getDayName
|
||
* @type String
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("getDayName", function(abbreviated) {
|
||
return abbreviated ? Date.abbrDayNames[this.getDay()] : Date.dayNames[this.getDay()];
|
||
});
|
||
|
||
/**
|
||
* Gets the name of the month.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.getMonthName();
|
||
* @result 'Janurary'
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.getMonthName(true);
|
||
* @result 'Jan'
|
||
*
|
||
* @param abbreviated Boolean When set to true the name will be abbreviated.
|
||
* @name getDayName
|
||
* @type String
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("getMonthName", function(abbreviated) {
|
||
return abbreviated ? Date.abbrMonthNames[this.getMonth()] : Date.monthNames[this.getMonth()];
|
||
});
|
||
|
||
/**
|
||
* Get the number of the day of the year.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.getDayOfYear();
|
||
* @result 11
|
||
*
|
||
* @name getDayOfYear
|
||
* @type Number
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("getDayOfYear", function() {
|
||
var tmpdtm = new Date("1/1/" + this.getFullYear());
|
||
return Math.floor((this.getTime() - tmpdtm.getTime()) / 86400000);
|
||
});
|
||
|
||
/**
|
||
* Get the number of the week of the year.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.getWeekOfYear();
|
||
* @result 2
|
||
*
|
||
* @name getWeekOfYear
|
||
* @type Number
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("getWeekOfYear", function() {
|
||
return Math.ceil(this.getDayOfYear() / 7);
|
||
});
|
||
|
||
/**
|
||
* Set the day of the year.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.setDayOfYear(1);
|
||
* dtm.toString();
|
||
* @result 'Tue Jan 01 2008 00:00:00'
|
||
*
|
||
* @name setDayOfYear
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("setDayOfYear", function(day) {
|
||
this.setMonth(0);
|
||
this.setDate(day);
|
||
return this;
|
||
});
|
||
|
||
/**
|
||
* Add a number of years to the date object.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.addYears(1);
|
||
* dtm.toString();
|
||
* @result 'Mon Jan 12 2009 00:00:00'
|
||
*
|
||
* @name addYears
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("addYears", function(num) {
|
||
this.setFullYear(this.getFullYear() + num);
|
||
return this;
|
||
});
|
||
|
||
/**
|
||
* Add a number of months to the date object.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.addMonths(1);
|
||
* dtm.toString();
|
||
* @result 'Tue Feb 12 2008 00:00:00'
|
||
*
|
||
* @name addMonths
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("addMonths", function(num) {
|
||
var tmpdtm = this.getDate();
|
||
|
||
this.setMonth(this.getMonth() + num);
|
||
|
||
if (tmpdtm > this.getDate())
|
||
this.addDays(-this.getDate());
|
||
|
||
return this;
|
||
});
|
||
|
||
/**
|
||
* Add a number of days to the date object.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.addDays(1);
|
||
* dtm.toString();
|
||
* @result 'Sun Jan 13 2008 00:00:00'
|
||
*
|
||
* @name addDays
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("addDays", function(num) {
|
||
//this.setDate(this.getDate() + num);
|
||
this.setTime(this.getTime() + (num*86400000) );
|
||
return this;
|
||
});
|
||
|
||
/**
|
||
* Add a number of hours to the date object.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.addHours(24);
|
||
* dtm.toString();
|
||
* @result 'Sun Jan 13 2008 00:00:00'
|
||
*
|
||
* @name addHours
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("addHours", function(num) {
|
||
this.setHours(this.getHours() + num);
|
||
return this;
|
||
});
|
||
|
||
/**
|
||
* Add a number of minutes to the date object.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.addMinutes(60);
|
||
* dtm.toString();
|
||
* @result 'Sat Jan 12 2008 01:00:00'
|
||
*
|
||
* @name addMinutes
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("addMinutes", function(num) {
|
||
this.setMinutes(this.getMinutes() + num);
|
||
return this;
|
||
});
|
||
|
||
/**
|
||
* Add a number of seconds to the date object.
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.addSeconds(60);
|
||
* dtm.toString();
|
||
* @result 'Sat Jan 12 2008 00:01:00'
|
||
*
|
||
* @name addSeconds
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
*/
|
||
add("addSeconds", function(num) {
|
||
this.setSeconds(this.getSeconds() + num);
|
||
return this;
|
||
});
|
||
|
||
/**
|
||
* Sets the time component of this Date to zero for cleaner, easier comparison of dates where time is not relevant.
|
||
*
|
||
* @example var dtm = new Date();
|
||
* dtm.zeroTime();
|
||
* dtm.toString();
|
||
* @result 'Sat Jan 12 2008 00:01:00'
|
||
*
|
||
* @name zeroTime
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
* @author Kelvin Luck
|
||
*/
|
||
add("zeroTime", function() {
|
||
this.setMilliseconds(0);
|
||
this.setSeconds(0);
|
||
this.setMinutes(0);
|
||
this.setHours(0);
|
||
return this;
|
||
});
|
||
|
||
/**
|
||
* Returns a string representation of the date object according to Date.format.
|
||
* (Date.toString may be used in other places so I purposefully didn't overwrite it)
|
||
*
|
||
* @example var dtm = new Date("01/12/2008");
|
||
* dtm.asString();
|
||
* @result '12/01/2008' // (where Date.format == 'dd/mm/yyyy'
|
||
*
|
||
* @name asString
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
* @author Kelvin Luck
|
||
*/
|
||
add("asString", function(format) {
|
||
var r = format || Date.format;
|
||
return r
|
||
.split('yyyy').join(this.getFullYear())
|
||
.split('yy').join((this.getFullYear() + '').substring(2))
|
||
.split('mmmm').join(this.getMonthName(false))
|
||
.split('mmm').join(this.getMonthName(true))
|
||
.split('mm').join(_zeroPad(this.getMonth()+1))
|
||
.split('dd').join(_zeroPad(this.getDate()))
|
||
.split('hh').join(_zeroPad(this.getHours()))
|
||
.split('min').join(_zeroPad(this.getMinutes()))
|
||
.split('ss').join(_zeroPad(this.getSeconds()));
|
||
});
|
||
|
||
/**
|
||
* Returns a new date object created from the passed String according to Date.format or false if the attempt to do this results in an invalid date object
|
||
* (We can't simple use Date.parse as it's not aware of locale and I chose not to overwrite it incase it's functionality is being relied on elsewhere)
|
||
*
|
||
* @example var dtm = Date.fromString("12/01/2008");
|
||
* dtm.toString();
|
||
* @result 'Sat Jan 12 2008 00:00:00' // (where Date.format == 'dd/mm/yyyy'
|
||
*
|
||
* @name fromString
|
||
* @type Date
|
||
* @cat Plugins/Methods/Date
|
||
* @author Kelvin Luck
|
||
*/
|
||
Date.fromString = function(s, format)
|
||
{
|
||
var f = format || Date.format;
|
||
var d = new Date('01/01/1977');
|
||
|
||
var mLength = 0;
|
||
|
||
var iM = f.indexOf('mmmm');
|
||
if (iM > -1) {
|
||
for (var i=0; i<Date.monthNames.length; i++) {
|
||
var mStr = s.substr(iM, Date.monthNames[i].length);
|
||
if (Date.monthNames[i] == mStr) {
|
||
mLength = Date.monthNames[i].length - 4;
|
||
break;
|
||
}
|
||
}
|
||
d.setMonth(i);
|
||
} else {
|
||
iM = f.indexOf('mmm');
|
||
if (iM > -1) {
|
||
var mStr = s.substr(iM, 3);
|
||
for (var i=0; i<Date.abbrMonthNames.length; i++) {
|
||
if (Date.abbrMonthNames[i] == mStr) break;
|
||
}
|
||
d.setMonth(i);
|
||
} else {
|
||
d.setMonth(Number(s.substr(f.indexOf('mm'), 2)) - 1);
|
||
}
|
||
}
|
||
|
||
var iY = f.indexOf('yyyy');
|
||
|
||
if (iY > -1) {
|
||
if (iM < iY)
|
||
{
|
||
iY += mLength;
|
||
}
|
||
d.setFullYear(Number(s.substr(iY, 4)));
|
||
} else {
|
||
if (iM < iY)
|
||
{
|
||
iY += mLength;
|
||
}
|
||
// TODO - this doesn't work very well - are there any rules for what is meant by a two digit year?
|
||
d.setFullYear(Number(Date.fullYearStart + s.substr(f.indexOf('yy'), 2)));
|
||
}
|
||
var iD = f.indexOf('dd');
|
||
if (iM < iD)
|
||
{
|
||
iD += mLength;
|
||
}
|
||
d.setDate(Number(s.substr(iD, 2)));
|
||
if (isNaN(d.getTime())) {
|
||
return false;
|
||
}
|
||
return d;
|
||
};
|
||
|
||
// utility method
|
||
var _zeroPad = function(num) {
|
||
var s = '0'+num;
|
||
return s.substring(s.length-2)
|
||
//return ('0'+num).substring(-2); // doesn't work on IE :(
|
||
};
|
||
|
||
})();;/**
|
||
* Copyright (c) 2008 Kelvin Luck (http://www.kelvinluck.com/)
|
||
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
||
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
||
* .
|
||
* $Id: jquery.datePicker.js 102 2010-09-13 14:00:54Z kelvin.luck $
|
||
**/
|
||
|
||
(function($){
|
||
|
||
$.fn.extend({
|
||
/**
|
||
* Render a calendar table into any matched elements.
|
||
*
|
||
* @param Object s (optional) Customize your calendars.
|
||
* @option Number month The month to render (NOTE that months are zero based). Default is today's month.
|
||
* @option Number year The year to render. Default is today's year.
|
||
* @option Function renderCallback A reference to a function that is called as each cell is rendered and which can add classes and event listeners to the created nodes. Default is no callback.
|
||
* @option Number showHeader Whether or not to show the header row, possible values are: $.dpConst.SHOW_HEADER_NONE (no header), $.dpConst.SHOW_HEADER_SHORT (first letter of each day) and $.dpConst.SHOW_HEADER_LONG (full name of each day). Default is $.dpConst.SHOW_HEADER_SHORT.
|
||
* @option String hoverClass The class to attach to each cell when you hover over it (to allow you to use hover effects in IE6 which doesn't support the :hover pseudo-class on elements other than links). Default is dp-hover. Pass false if you don't want a hover class.
|
||
* @type jQuery
|
||
* @name renderCalendar
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('#calendar-me').renderCalendar({month:0, year:2007});
|
||
* @desc Renders a calendar displaying January 2007 into the element with an id of calendar-me.
|
||
*
|
||
* @example
|
||
* var testCallback = function($td, thisDate, month, year)
|
||
* {
|
||
* if ($td.is('.current-month') && thisDate.getDay() == 4) {
|
||
* var d = thisDate.getDate();
|
||
* $td.bind(
|
||
* 'click',
|
||
* function()
|
||
* {
|
||
* alert('You clicked on ' + d + '/' + (Number(month)+1) + '/' + year);
|
||
* }
|
||
* ).addClass('thursday');
|
||
* } else if (thisDate.getDay() == 5) {
|
||
* $td.html('Friday the ' + $td.html() + 'th');
|
||
* }
|
||
* }
|
||
* $('#calendar-me').renderCalendar({month:0, year:2007, renderCallback:testCallback});
|
||
*
|
||
* @desc Renders a calendar displaying January 2007 into the element with an id of calendar-me. Every Thursday in the current month has a class of "thursday" applied to it, is clickable and shows an alert when clicked. Every Friday on the calendar has the number inside replaced with text.
|
||
**/
|
||
renderCalendar : function(s)
|
||
{
|
||
var dc = function(a)
|
||
{
|
||
return document.createElement(a);
|
||
};
|
||
|
||
s = $.extend({}, $.fn.datePicker.defaults, s);
|
||
|
||
if (s.showHeader != $.dpConst.SHOW_HEADER_NONE) {
|
||
var headRow = $(dc('tr'));
|
||
for (var i=Date.firstDayOfWeek; i<Date.firstDayOfWeek+7; i++) {
|
||
var weekday = i%7;
|
||
var day = Date.dayNames[weekday];
|
||
headRow.append(
|
||
jQuery(dc('th')).attr({'scope':'col', 'abbr':day, 'title':day, 'class':(weekday == 0 || weekday == 6 ? 'weekend' : 'weekday')}).html(s.showHeader == $.dpConst.SHOW_HEADER_SHORT ? day.substr(0, 1) : day)
|
||
);
|
||
}
|
||
};
|
||
|
||
var calendarTable = $(dc('table'))
|
||
.attr(
|
||
{
|
||
'cellspacing':2
|
||
}
|
||
)
|
||
.addClass('jCalendar')
|
||
.append(
|
||
(s.showHeader != $.dpConst.SHOW_HEADER_NONE ?
|
||
$(dc('thead'))
|
||
.append(headRow)
|
||
:
|
||
dc('thead')
|
||
)
|
||
);
|
||
var tbody = $(dc('tbody'));
|
||
|
||
var today = (new Date()).zeroTime();
|
||
today.setHours(12);
|
||
|
||
var month = s.month == undefined ? today.getMonth() : s.month;
|
||
var year = s.year || today.getFullYear();
|
||
|
||
var currentDate = (new Date(year, month, 1, 12, 0, 0));
|
||
|
||
|
||
var firstDayOffset = Date.firstDayOfWeek - currentDate.getDay() + 1;
|
||
if (firstDayOffset > 1) firstDayOffset -= 7;
|
||
var weeksToDraw = Math.ceil(( (-1*firstDayOffset+1) + currentDate.getDaysInMonth() ) /7);
|
||
currentDate.addDays(firstDayOffset-1);
|
||
|
||
var doHover = function(firstDayInBounds)
|
||
{
|
||
return function()
|
||
{
|
||
if (s.hoverClass) {
|
||
var $this = $(this);
|
||
if (!s.selectWeek) {
|
||
$this.addClass(s.hoverClass);
|
||
} else if (firstDayInBounds && !$this.is('.disabled')) {
|
||
$this.parent().addClass('activeWeekHover');
|
||
}
|
||
}
|
||
}
|
||
};
|
||
var unHover = function()
|
||
{
|
||
if (s.hoverClass) {
|
||
var $this = $(this);
|
||
$this.removeClass(s.hoverClass);
|
||
$this.parent().removeClass('activeWeekHover');
|
||
}
|
||
};
|
||
|
||
var w = 0;
|
||
while (w++<weeksToDraw) {
|
||
var r = jQuery(dc('tr'));
|
||
var firstDayInBounds = s.dpController ? currentDate > s.dpController.startDate : false;
|
||
for (var i=0; i<7; i++) {
|
||
var thisMonth = currentDate.getMonth() == month;
|
||
var d = $(dc('td'))
|
||
.text(currentDate.getDate() + '')
|
||
.addClass((thisMonth ? 'current-month ' : 'other-month ') +
|
||
(currentDate.isWeekend() ? 'weekend ' : 'weekday ') +
|
||
(thisMonth && currentDate.getTime() == today.getTime() ? 'today ' : '')
|
||
)
|
||
.data('datePickerDate', currentDate.asString())
|
||
.hover(doHover(firstDayInBounds), unHover)
|
||
;
|
||
r.append(d);
|
||
if (s.renderCallback) {
|
||
s.renderCallback(d, currentDate, month, year);
|
||
}
|
||
// addDays(1) fails in some locales due to daylight savings. See issue 39.
|
||
//currentDate.addDays(1);
|
||
// set the time to midday to avoid any weird timezone issues??
|
||
currentDate = new Date(currentDate.getFullYear(), currentDate.getMonth(), currentDate.getDate()+1, 12, 0, 0);
|
||
}
|
||
tbody.append(r);
|
||
}
|
||
calendarTable.append(tbody);
|
||
|
||
return this.each(
|
||
function()
|
||
{
|
||
$(this).empty().append(calendarTable);
|
||
}
|
||
);
|
||
},
|
||
/**
|
||
* Create a datePicker associated with each of the matched elements.
|
||
*
|
||
* The matched element will receive a few custom events with the following signatures:
|
||
*
|
||
* dateSelected(event, date, $td, status)
|
||
* Triggered when a date is selected. event is a reference to the event, date is the Date selected, $td is a jquery object wrapped around the TD that was clicked on and status is whether the date was selected (true) or deselected (false)
|
||
*
|
||
* dpClosed(event, selected)
|
||
* Triggered when the date picker is closed. event is a reference to the event and selected is an Array containing Date objects.
|
||
*
|
||
* dpMonthChanged(event, displayedMonth, displayedYear)
|
||
* Triggered when the month of the popped up calendar is changed. event is a reference to the event, displayedMonth is the number of the month now displayed (zero based) and displayedYear is the year of the month.
|
||
*
|
||
* dpDisplayed(event, $datePickerDiv)
|
||
* Triggered when the date picker is created. $datePickerDiv is the div containing the date picker. Use this event to add custom content/ listeners to the popped up date picker.
|
||
*
|
||
* @param Object s (optional) Customize your date pickers.
|
||
* @option Number month The month to render when the date picker is opened (NOTE that months are zero based). Default is today's month.
|
||
* @option Number year The year to render when the date picker is opened. Default is today's year.
|
||
* @option String startDate The first date date can be selected.
|
||
* @option String endDate The last date that can be selected.
|
||
* @option Boolean inline Whether to create the datePicker as inline (e.g. always on the page) or as a model popup. Default is false (== modal popup)
|
||
* @option Boolean createButton Whether to create a .dp-choose-date anchor directly after the matched element which when clicked will trigger the showing of the date picker. Default is true.
|
||
* @option Boolean showYearNavigation Whether to display buttons which allow the user to navigate through the months a year at a time. Default is true.
|
||
* @option Boolean closeOnSelect Whether to close the date picker when a date is selected. Default is true.
|
||
* @option Boolean displayClose Whether to create a "Close" button within the date picker popup. Default is false.
|
||
* @option Boolean selectMultiple Whether a user should be able to select multiple dates with this date picker. Default is false.
|
||
* @option Number numSelectable The maximum number of dates that can be selected where selectMultiple is true. Default is a very high number.
|
||
* @option Boolean clickInput If the matched element is an input type="text" and this option is true then clicking on the input will cause the date picker to appear.
|
||
* @option Boolean rememberViewedMonth Whether the datePicker should remember the last viewed month and open on it. If false then the date picker will always open with the month for the first selected date visible.
|
||
* @option Boolean selectWeek Whether to select a complete week at a time...
|
||
* @option Number verticalPosition The vertical alignment of the popped up date picker to the matched element. One of $.dpConst.POS_TOP and $.dpConst.POS_BOTTOM. Default is $.dpConst.POS_TOP.
|
||
* @option Number horizontalPosition The horizontal alignment of the popped up date picker to the matched element. One of $.dpConst.POS_LEFT and $.dpConst.POS_RIGHT.
|
||
* @option Number verticalOffset The number of pixels offset from the defined verticalPosition of this date picker that it should pop up in. Default in 0.
|
||
* @option Number horizontalOffset The number of pixels offset from the defined horizontalPosition of this date picker that it should pop up in. Default in 0.
|
||
* @option (Function|Array) renderCallback A reference to a function (or an array of separate functions) that is called as each cell is rendered and which can add classes and event listeners to the created nodes. Each callback function will receive four arguments; a jquery object wrapping the created TD, a Date object containing the date this TD represents, a number giving the currently rendered month and a number giving the currently rendered year. Default is no callback.
|
||
* @option String hoverClass The class to attach to each cell when you hover over it (to allow you to use hover effects in IE6 which doesn't support the :hover pseudo-class on elements other than links). Default is dp-hover. Pass false if you don't want a hover class.
|
||
* @option String autoFocusNextInput Whether focus should be passed onto the next input in the form (true) or remain on this input (false) when a date is selected and the calendar closes
|
||
* @type jQuery
|
||
* @name datePicker
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('input.date-picker').datePicker();
|
||
* @desc Creates a date picker button next to all matched input elements. When the button is clicked on the value of the selected date will be placed in the corresponding input (formatted according to Date.format).
|
||
*
|
||
* @example demo/index.html
|
||
* @desc See the projects homepage for many more complex examples...
|
||
**/
|
||
datePicker : function(s)
|
||
{
|
||
if (!$.event._dpCache) $.event._dpCache = [];
|
||
|
||
// initialise the date picker controller with the relevant settings...
|
||
s = $.extend({}, $.fn.datePicker.defaults, s);
|
||
|
||
return this.each(
|
||
function()
|
||
{
|
||
var $this = $(this);
|
||
var alreadyExists = true;
|
||
|
||
if (!this._dpId) {
|
||
this._dpId = $.event.guid++;
|
||
$.event._dpCache[this._dpId] = new DatePicker(this);
|
||
alreadyExists = false;
|
||
}
|
||
|
||
if (s.inline) {
|
||
s.createButton = false;
|
||
s.displayClose = false;
|
||
s.closeOnSelect = false;
|
||
$this.empty();
|
||
}
|
||
|
||
var controller = $.event._dpCache[this._dpId];
|
||
|
||
controller.init(s);
|
||
|
||
if (!alreadyExists && s.createButton) {
|
||
// create it!
|
||
controller.button = $('<a href="#" class="dp-choose-date" title="' + $.dpText.TEXT_CHOOSE_DATE + '">' + $.dpText.TEXT_CHOOSE_DATE + '</a>')
|
||
.bind(
|
||
'click',
|
||
function()
|
||
{
|
||
$this.dpDisplay(this);
|
||
this.blur();
|
||
return false;
|
||
}
|
||
);
|
||
$this.after(controller.button);
|
||
}
|
||
|
||
if (!alreadyExists && $this.is(':text')) {
|
||
$this
|
||
.bind(
|
||
'dateSelected',
|
||
function(e, selectedDate, $td)
|
||
{
|
||
this.value = selectedDate.asString();
|
||
}
|
||
).bind(
|
||
'change',
|
||
function()
|
||
{
|
||
if (this.value == '') {
|
||
controller.clearSelected();
|
||
} else {
|
||
var d = Date.fromString(this.value);
|
||
if (d) {
|
||
controller.setSelected(d, true, true);
|
||
}
|
||
}
|
||
}
|
||
);
|
||
if (s.clickInput) {
|
||
$this.bind(
|
||
'click',
|
||
function()
|
||
{
|
||
// The change event doesn't happen until the input loses focus so we need to manually trigger it...
|
||
$this.trigger('change');
|
||
$this.dpDisplay();
|
||
}
|
||
);
|
||
}
|
||
var d = Date.fromString(this.value);
|
||
if (this.value != '' && d) {
|
||
controller.setSelected(d, true, true);
|
||
}
|
||
}
|
||
|
||
$this.addClass('dp-applied');
|
||
|
||
}
|
||
)
|
||
},
|
||
/**
|
||
* Disables or enables this date picker
|
||
*
|
||
* @param Boolean s Whether to disable (true) or enable (false) this datePicker
|
||
* @type jQuery
|
||
* @name dpSetDisabled
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('.date-picker').datePicker();
|
||
* $('.date-picker').dpSetDisabled(true);
|
||
* @desc Prevents this date picker from displaying and adds a class of dp-disabled to it (and it's associated button if it has one) for styling purposes. If the matched element is an input field then it will also set the disabled attribute to stop people directly editing the field.
|
||
**/
|
||
dpSetDisabled : function(s)
|
||
{
|
||
return _w.call(this, 'setDisabled', s);
|
||
},
|
||
/**
|
||
* Updates the first selectable date for any date pickers on any matched elements.
|
||
*
|
||
* @param String d A string representing the first selectable date (formatted according to Date.format).
|
||
* @type jQuery
|
||
* @name dpSetStartDate
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('.date-picker').datePicker();
|
||
* $('.date-picker').dpSetStartDate('01/01/2000');
|
||
* @desc Creates a date picker associated with all elements with a class of "date-picker" then sets the first selectable date for each of these to the first day of the millenium.
|
||
**/
|
||
dpSetStartDate : function(d)
|
||
{
|
||
return _w.call(this, 'setStartDate', d);
|
||
},
|
||
/**
|
||
* Updates the last selectable date for any date pickers on any matched elements.
|
||
*
|
||
* @param String d A string representing the last selectable date (formatted according to Date.format).
|
||
* @type jQuery
|
||
* @name dpSetEndDate
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('.date-picker').datePicker();
|
||
* $('.date-picker').dpSetEndDate('01/01/2010');
|
||
* @desc Creates a date picker associated with all elements with a class of "date-picker" then sets the last selectable date for each of these to the first Janurary 2010.
|
||
**/
|
||
dpSetEndDate : function(d)
|
||
{
|
||
return _w.call(this, 'setEndDate', d);
|
||
},
|
||
/**
|
||
* Gets a list of Dates currently selected by this datePicker. This will be an empty array if no dates are currently selected or NULL if there is no datePicker associated with the matched element.
|
||
*
|
||
* @type Array
|
||
* @name dpGetSelected
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('.date-picker').datePicker();
|
||
* alert($('.date-picker').dpGetSelected());
|
||
* @desc Will alert an empty array (as nothing is selected yet)
|
||
**/
|
||
dpGetSelected : function()
|
||
{
|
||
var c = _getController(this[0]);
|
||
if (c) {
|
||
return c.getSelected();
|
||
}
|
||
return null;
|
||
},
|
||
/**
|
||
* Selects or deselects a date on any matched element's date pickers. Deselcting is only useful on date pickers where selectMultiple==true. Selecting will only work if the passed date is within the startDate and endDate boundries for a given date picker.
|
||
*
|
||
* @param String d A string representing the date you want to select (formatted according to Date.format).
|
||
* @param Boolean v Whether you want to select (true) or deselect (false) this date. Optional - default = true.
|
||
* @param Boolean m Whether you want the date picker to open up on the month of this date when it is next opened. Optional - default = true.
|
||
* @param Boolean e Whether you want the date picker to dispatch events related to this change of selection. Optional - default = true.
|
||
* @type jQuery
|
||
* @name dpSetSelected
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('.date-picker').datePicker();
|
||
* $('.date-picker').dpSetSelected('01/01/2010');
|
||
* @desc Creates a date picker associated with all elements with a class of "date-picker" then sets the selected date on these date pickers to the first Janurary 2010. When the date picker is next opened it will display Janurary 2010.
|
||
**/
|
||
dpSetSelected : function(d, v, m, e)
|
||
{
|
||
if (v == undefined) v=true;
|
||
if (m == undefined) m=true;
|
||
if (e == undefined) e=true;
|
||
return _w.call(this, 'setSelected', Date.fromString(d), v, m, e);
|
||
},
|
||
/**
|
||
* Sets the month that will be displayed when the date picker is next opened. If the passed month is before startDate then the month containing startDate will be displayed instead. If the passed month is after endDate then the month containing the endDate will be displayed instead.
|
||
*
|
||
* @param Number m The month you want the date picker to display. Optional - defaults to the currently displayed month.
|
||
* @param Number y The year you want the date picker to display. Optional - defaults to the currently displayed year.
|
||
* @type jQuery
|
||
* @name dpSetDisplayedMonth
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('.date-picker').datePicker();
|
||
* $('.date-picker').dpSetDisplayedMonth(10, 2008);
|
||
* @desc Creates a date picker associated with all elements with a class of "date-picker" then sets the selected date on these date pickers to the first Janurary 2010. When the date picker is next opened it will display Janurary 2010.
|
||
**/
|
||
dpSetDisplayedMonth : function(m, y)
|
||
{
|
||
return _w.call(this, 'setDisplayedMonth', Number(m), Number(y), true);
|
||
},
|
||
/**
|
||
* Displays the date picker associated with the matched elements. Since only one date picker can be displayed at once then the date picker associated with the last matched element will be the one that is displayed.
|
||
*
|
||
* @param HTMLElement e An element that you want the date picker to pop up relative in position to. Optional - default behaviour is to pop up next to the element associated with this date picker.
|
||
* @type jQuery
|
||
* @name dpDisplay
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('#date-picker').datePicker();
|
||
* $('#date-picker').dpDisplay();
|
||
* @desc Creates a date picker associated with the element with an id of date-picker and then causes it to pop up.
|
||
**/
|
||
dpDisplay : function(e)
|
||
{
|
||
return _w.call(this, 'display', e);
|
||
},
|
||
/**
|
||
* Sets a function or array of functions that is called when each TD of the date picker popup is rendered to the page
|
||
*
|
||
* @param (Function|Array) a A function or an array of functions that are called when each td is rendered. Each function will receive four arguments; a jquery object wrapping the created TD, a Date object containing the date this TD represents, a number giving the currently rendered month and a number giving the currently rendered year.
|
||
* @type jQuery
|
||
* @name dpSetRenderCallback
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('#date-picker').datePicker();
|
||
* $('#date-picker').dpSetRenderCallback(function($td, thisDate, month, year)
|
||
* {
|
||
* // do stuff as each td is rendered dependant on the date in the td and the displayed month and year
|
||
* });
|
||
* @desc Creates a date picker associated with the element with an id of date-picker and then creates a function which is called as each td is rendered when this date picker is displayed.
|
||
**/
|
||
dpSetRenderCallback : function(a)
|
||
{
|
||
return _w.call(this, 'setRenderCallback', a);
|
||
},
|
||
/**
|
||
* Sets the position that the datePicker will pop up (relative to it's associated element)
|
||
*
|
||
* @param Number v The vertical alignment of the created date picker to it's associated element. Possible values are $.dpConst.POS_TOP and $.dpConst.POS_BOTTOM
|
||
* @param Number h The horizontal alignment of the created date picker to it's associated element. Possible values are $.dpConst.POS_LEFT and $.dpConst.POS_RIGHT
|
||
* @type jQuery
|
||
* @name dpSetPosition
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('#date-picker').datePicker();
|
||
* $('#date-picker').dpSetPosition($.dpConst.POS_BOTTOM, $.dpConst.POS_RIGHT);
|
||
* @desc Creates a date picker associated with the element with an id of date-picker and makes it so that when this date picker pops up it will be bottom and right aligned to the #date-picker element.
|
||
**/
|
||
dpSetPosition : function(v, h)
|
||
{
|
||
return _w.call(this, 'setPosition', v, h);
|
||
},
|
||
/**
|
||
* Sets the offset that the popped up date picker will have from it's default position relative to it's associated element (as set by dpSetPosition)
|
||
*
|
||
* @param Number v The vertical offset of the created date picker.
|
||
* @param Number h The horizontal offset of the created date picker.
|
||
* @type jQuery
|
||
* @name dpSetOffset
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('#date-picker').datePicker();
|
||
* $('#date-picker').dpSetOffset(-20, 200);
|
||
* @desc Creates a date picker associated with the element with an id of date-picker and makes it so that when this date picker pops up it will be 20 pixels above and 200 pixels to the right of it's default position.
|
||
**/
|
||
dpSetOffset : function(v, h)
|
||
{
|
||
return _w.call(this, 'setOffset', v, h);
|
||
},
|
||
/**
|
||
* Closes the open date picker associated with this element.
|
||
*
|
||
* @type jQuery
|
||
* @name dpClose
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
* @example $('.date-pick')
|
||
* .datePicker()
|
||
* .bind(
|
||
* 'focus',
|
||
* function()
|
||
* {
|
||
* $(this).dpDisplay();
|
||
* }
|
||
* ).bind(
|
||
* 'blur',
|
||
* function()
|
||
* {
|
||
* $(this).dpClose();
|
||
* }
|
||
* );
|
||
**/
|
||
dpClose : function()
|
||
{
|
||
return _w.call(this, '_closeCalendar', false, this[0]);
|
||
},
|
||
/**
|
||
* Rerenders the date picker's current month (for use with inline calendars and renderCallbacks).
|
||
*
|
||
* @type jQuery
|
||
* @name dpRerenderCalendar
|
||
* @cat plugins/datePicker
|
||
* @author Kelvin Luck (http://www.kelvinluck.com/)
|
||
*
|
||
**/
|
||
dpRerenderCalendar : function()
|
||
{
|
||
return _w.call(this, '_rerenderCalendar');
|
||
},
|
||
// private function called on unload to clean up any expandos etc and prevent memory links...
|
||
_dpDestroy : function()
|
||
{
|
||
// TODO - implement this?
|
||
}
|
||
});
|
||
|
||
// private internal function to cut down on the amount of code needed where we forward
|
||
// dp* methods on the jQuery object on to the relevant DatePicker controllers...
|
||
var _w = function(f, a1, a2, a3, a4)
|
||
{
|
||
return this.each(
|
||
function()
|
||
{
|
||
var c = _getController(this);
|
||
if (c) {
|
||
c[f](a1, a2, a3, a4);
|
||
}
|
||
}
|
||
);
|
||
};
|
||
|
||
function DatePicker(ele)
|
||
{
|
||
this.ele = ele;
|
||
|
||
// initial values...
|
||
this.displayedMonth = null;
|
||
this.displayedYear = null;
|
||
this.startDate = null;
|
||
this.endDate = null;
|
||
this.showYearNavigation = null;
|
||
this.closeOnSelect = null;
|
||
this.displayClose = null;
|
||
this.rememberViewedMonth= null;
|
||
this.selectMultiple = null;
|
||
this.numSelectable = null;
|
||
this.numSelected = null;
|
||
this.verticalPosition = null;
|
||
this.horizontalPosition = null;
|
||
this.verticalOffset = null;
|
||
this.horizontalOffset = null;
|
||
this.button = null;
|
||
this.renderCallback = [];
|
||
this.selectedDates = {};
|
||
this.inline = null;
|
||
this.context = '#dp-popup';
|
||
this.settings = {};
|
||
};
|
||
$.extend(
|
||
DatePicker.prototype,
|
||
{
|
||
init : function(s)
|
||
{
|
||
this.setStartDate(s.startDate);
|
||
this.setEndDate(s.endDate);
|
||
this.setDisplayedMonth(Number(s.month), Number(s.year));
|
||
this.setRenderCallback(s.renderCallback);
|
||
this.showYearNavigation = s.showYearNavigation;
|
||
this.closeOnSelect = s.closeOnSelect;
|
||
this.displayClose = s.displayClose;
|
||
this.rememberViewedMonth = s.rememberViewedMonth;
|
||
this.selectMultiple = s.selectMultiple;
|
||
this.numSelectable = s.selectMultiple ? s.numSelectable : 1;
|
||
this.numSelected = 0;
|
||
this.verticalPosition = s.verticalPosition;
|
||
this.horizontalPosition = s.horizontalPosition;
|
||
this.hoverClass = s.hoverClass;
|
||
this.setOffset(s.verticalOffset, s.horizontalOffset);
|
||
this.inline = s.inline;
|
||
this.settings = s;
|
||
if (this.inline) {
|
||
this.context = this.ele;
|
||
this.display();
|
||
}
|
||
},
|
||
setStartDate : function(d)
|
||
{
|
||
if (d) {
|
||
this.startDate = Date.fromString(d);
|
||
}
|
||
if (!this.startDate) {
|
||
this.startDate = (new Date()).zeroTime();
|
||
}
|
||
this.setDisplayedMonth(this.displayedMonth, this.displayedYear);
|
||
},
|
||
setEndDate : function(d)
|
||
{
|
||
if (d) {
|
||
this.endDate = Date.fromString(d);
|
||
}
|
||
if (!this.endDate) {
|
||
this.endDate = (new Date('12/31/2999')); // using the JS Date.parse function which expects mm/dd/yyyy
|
||
}
|
||
if (this.endDate.getTime() < this.startDate.getTime()) {
|
||
this.endDate = this.startDate;
|
||
}
|
||
this.setDisplayedMonth(this.displayedMonth, this.displayedYear);
|
||
},
|
||
setPosition : function(v, h)
|
||
{
|
||
this.verticalPosition = v;
|
||
this.horizontalPosition = h;
|
||
},
|
||
setOffset : function(v, h)
|
||
{
|
||
this.verticalOffset = parseInt(v) || 0;
|
||
this.horizontalOffset = parseInt(h) || 0;
|
||
},
|
||
setDisabled : function(s)
|
||
{
|
||
$e = $(this.ele);
|
||
$e[s ? 'addClass' : 'removeClass']('dp-disabled');
|
||
if (this.button) {
|
||
$but = $(this.button);
|
||
$but[s ? 'addClass' : 'removeClass']('dp-disabled');
|
||
$but.attr('title', s ? '' : $.dpText.TEXT_CHOOSE_DATE);
|
||
}
|
||
if ($e.is(':text')) {
|
||
$e.attr('disabled', s ? 'disabled' : '');
|
||
}
|
||
},
|
||
setDisplayedMonth : function(m, y, rerender)
|
||
{
|
||
if (this.startDate == undefined || this.endDate == undefined) {
|
||
return;
|
||
}
|
||
var s = new Date(this.startDate.getTime());
|
||
s.setDate(1);
|
||
var e = new Date(this.endDate.getTime());
|
||
e.setDate(1);
|
||
|
||
var t;
|
||
if ((!m && !y) || (isNaN(m) && isNaN(y))) {
|
||
// no month or year passed - default to current month
|
||
t = new Date().zeroTime();
|
||
t.setDate(1);
|
||
} else if (isNaN(m)) {
|
||
// just year passed in - presume we want the displayedMonth
|
||
t = new Date(y, this.displayedMonth, 1);
|
||
} else if (isNaN(y)) {
|
||
// just month passed in - presume we want the displayedYear
|
||
t = new Date(this.displayedYear, m, 1);
|
||
} else {
|
||
// year and month passed in - that's the date we want!
|
||
t = new Date(y, m, 1)
|
||
}
|
||
// check if the desired date is within the range of our defined startDate and endDate
|
||
if (t.getTime() < s.getTime()) {
|
||
t = s;
|
||
} else if (t.getTime() > e.getTime()) {
|
||
t = e;
|
||
}
|
||
var oldMonth = this.displayedMonth;
|
||
var oldYear = this.displayedYear;
|
||
this.displayedMonth = t.getMonth();
|
||
this.displayedYear = t.getFullYear();
|
||
|
||
if (rerender && (this.displayedMonth != oldMonth || this.displayedYear != oldYear))
|
||
{
|
||
this._rerenderCalendar();
|
||
$(this.ele).trigger('dpMonthChanged', [this.displayedMonth, this.displayedYear]);
|
||
}
|
||
},
|
||
setSelected : function(d, v, moveToMonth, dispatchEvents)
|
||
{
|
||
if (d < this.startDate || d.zeroTime() > this.endDate.zeroTime()) {
|
||
// Don't allow people to select dates outside range...
|
||
return;
|
||
}
|
||
var s = this.settings;
|
||
if (s.selectWeek)
|
||
{
|
||
d = d.addDays(- (d.getDay() - Date.firstDayOfWeek + 7) % 7);
|
||
if (d < this.startDate) // The first day of this week is before the start date so is unselectable...
|
||
{
|
||
return;
|
||
}
|
||
}
|
||
if (v == this.isSelected(d)) // this date is already un/selected
|
||
{
|
||
return;
|
||
}
|
||
if (this.selectMultiple == false) {
|
||
this.clearSelected();
|
||
} else if (v && this.numSelected == this.numSelectable) {
|
||
// can't select any more dates...
|
||
return;
|
||
}
|
||
if (moveToMonth && (this.displayedMonth != d.getMonth() || this.displayedYear != d.getFullYear())) {
|
||
this.setDisplayedMonth(d.getMonth(), d.getFullYear(), true);
|
||
}
|
||
this.selectedDates[d.asString()] = v;
|
||
this.numSelected += v ? 1 : -1;
|
||
var selectorString = 'td.' + (d.getMonth() == this.displayedMonth ? 'current-month' : 'other-month');
|
||
var $td;
|
||
$(selectorString, this.context).each(
|
||
function()
|
||
{
|
||
if ($(this).data('datePickerDate') == d.asString()) {
|
||
$td = $(this);
|
||
if (s.selectWeek)
|
||
{
|
||
$td.parent()[v ? 'addClass' : 'removeClass']('selectedWeek');
|
||
}
|
||
$td[v ? 'addClass' : 'removeClass']('selected');
|
||
}
|
||
}
|
||
);
|
||
$('td', this.context).not('.selected')[this.selectMultiple && this.numSelected == this.numSelectable ? 'addClass' : 'removeClass']('unselectable');
|
||
|
||
if (dispatchEvents)
|
||
{
|
||
var s = this.isSelected(d);
|
||
$e = $(this.ele);
|
||
var dClone = Date.fromString(d.asString());
|
||
$e.trigger('dateSelected', [dClone, $td, s]);
|
||
$e.trigger('change');
|
||
}
|
||
},
|
||
isSelected : function(d)
|
||
{
|
||
return this.selectedDates[d.asString()];
|
||
},
|
||
getSelected : function()
|
||
{
|
||
var r = [];
|
||
for(var s in this.selectedDates) {
|
||
if (this.selectedDates[s] == true) {
|
||
r.push(Date.fromString(s));
|
||
}
|
||
}
|
||
return r;
|
||
},
|
||
clearSelected : function()
|
||
{
|
||
this.selectedDates = {};
|
||
this.numSelected = 0;
|
||
$('td.selected', this.context).removeClass('selected').parent().removeClass('selectedWeek');
|
||
},
|
||
display : function(eleAlignTo)
|
||
{
|
||
if ($(this.ele).is('.dp-disabled')) return;
|
||
|
||
eleAlignTo = eleAlignTo || this.ele;
|
||
var c = this;
|
||
var $ele = $(eleAlignTo);
|
||
var eleOffset = $ele.offset();
|
||
|
||
var $createIn;
|
||
var attrs;
|
||
var attrsCalendarHolder;
|
||
var cssRules;
|
||
|
||
if (c.inline) {
|
||
$createIn = $(this.ele);
|
||
attrs = {
|
||
'id' : 'calendar-' + this.ele._dpId,
|
||
'class' : 'dp-popup dp-popup-inline'
|
||
};
|
||
|
||
$('.dp-popup', $createIn).remove();
|
||
cssRules = {
|
||
};
|
||
} else {
|
||
$createIn = $('body');
|
||
attrs = {
|
||
'id' : 'dp-popup',
|
||
'class' : 'dp-popup'
|
||
};
|
||
cssRules = {
|
||
'top' : eleOffset.top + c.verticalOffset,
|
||
'left' : eleOffset.left + c.horizontalOffset
|
||
};
|
||
|
||
var _checkMouse = function(e)
|
||
{
|
||
var el = e.target;
|
||
var cal = $('#dp-popup')[0];
|
||
|
||
while (true){
|
||
if (el == cal) {
|
||
return true;
|
||
} else if (el == document) {
|
||
c._closeCalendar();
|
||
return false;
|
||
} else {
|
||
el = $(el).parent()[0];
|
||
}
|
||
}
|
||
};
|
||
this._checkMouse = _checkMouse;
|
||
|
||
c._closeCalendar(true);
|
||
$(document).bind(
|
||
'keydown.datepicker',
|
||
function(event)
|
||
{
|
||
if (event.keyCode == 27) {
|
||
c._closeCalendar();
|
||
}
|
||
}
|
||
);
|
||
}
|
||
|
||
if (!c.rememberViewedMonth)
|
||
{
|
||
var selectedDate = this.getSelected()[0];
|
||
if (selectedDate) {
|
||
selectedDate = new Date(selectedDate);
|
||
this.setDisplayedMonth(selectedDate.getMonth(), selectedDate.getFullYear(), false);
|
||
}
|
||
}
|
||
|
||
$createIn
|
||
.append(
|
||
$('<div></div>')
|
||
.attr(attrs)
|
||
.css(cssRules)
|
||
.append(
|
||
// $('<a href="#" class="selecteee">aaa</a>'),
|
||
$('<h2></h2>'),
|
||
$('<div class="dp-nav-prev"></div>')
|
||
.append(
|
||
$('<a class="dp-nav-prev-year" href="#" title="' + $.dpText.TEXT_PREV_YEAR + '"><<</a>')
|
||
.bind(
|
||
'click',
|
||
function()
|
||
{
|
||
return c._displayNewMonth.call(c, this, 0, -1);
|
||
}
|
||
),
|
||
$('<a class="dp-nav-prev-month" href="#" title="' + $.dpText.TEXT_PREV_MONTH + '"><</a>')
|
||
.bind(
|
||
'click',
|
||
function()
|
||
{
|
||
return c._displayNewMonth.call(c, this, -1, 0);
|
||
}
|
||
)
|
||
),
|
||
$('<div class="dp-nav-next"></div>')
|
||
.append(
|
||
$('<a class="dp-nav-next-year" href="#" title="' + $.dpText.TEXT_NEXT_YEAR + '">>></a>')
|
||
.bind(
|
||
'click',
|
||
function()
|
||
{
|
||
return c._displayNewMonth.call(c, this, 0, 1);
|
||
}
|
||
),
|
||
$('<a class="dp-nav-next-month" href="#" title="' + $.dpText.TEXT_NEXT_MONTH + '">></a>')
|
||
.bind(
|
||
'click',
|
||
function()
|
||
{
|
||
return c._displayNewMonth.call(c, this, 1, 0);
|
||
}
|
||
)
|
||
),
|
||
$('<div class="dp-calendar"></div>')
|
||
)
|
||
.bgIframe()
|
||
);
|
||
|
||
var $pop = this.inline ? $('.dp-popup', this.context) : $('#dp-popup');
|
||
|
||
if (this.showYearNavigation == false) {
|
||
$('.dp-nav-prev-year, .dp-nav-next-year', c.context).css('display', 'none');
|
||
}
|
||
if (this.displayClose) {
|
||
$pop.append(
|
||
$('<a href="#" id="dp-close">' + $.dpText.TEXT_CLOSE + '</a>')
|
||
.bind(
|
||
'click',
|
||
function()
|
||
{
|
||
c._closeCalendar();
|
||
return false;
|
||
}
|
||
)
|
||
);
|
||
}
|
||
c._renderCalendar();
|
||
|
||
$(this.ele).trigger('dpDisplayed', $pop);
|
||
|
||
if (!c.inline) {
|
||
if (this.verticalPosition == $.dpConst.POS_BOTTOM) {
|
||
$pop.css('top', eleOffset.top + $ele.height() - $pop.height() + c.verticalOffset);
|
||
}
|
||
if (this.horizontalPosition == $.dpConst.POS_RIGHT) {
|
||
$pop.css('left', eleOffset.left + $ele.width() - $pop.width() + c.horizontalOffset);
|
||
}
|
||
// $('.selectee', this.context).focus();
|
||
$(document).bind('mousedown.datepicker', this._checkMouse);
|
||
}
|
||
|
||
},
|
||
setRenderCallback : function(a)
|
||
{
|
||
if (a == null) return;
|
||
if (a && typeof(a) == 'function') {
|
||
a = [a];
|
||
}
|
||
this.renderCallback = this.renderCallback.concat(a);
|
||
},
|
||
cellRender : function ($td, thisDate, month, year) {
|
||
var c = this.dpController;
|
||
var d = new Date(thisDate.getTime());
|
||
|
||
// add our click handlers to deal with it when the days are clicked...
|
||
|
||
$td.bind(
|
||
'click',
|
||
function()
|
||
{
|
||
var $this = $(this);
|
||
if (!$this.is('.disabled')) {
|
||
c.setSelected(d, !$this.is('.selected') || !c.selectMultiple, false, true);
|
||
if (c.closeOnSelect) {
|
||
// Focus the next input in the form…
|
||
if (c.settings.autoFocusNextInput) {
|
||
var ele = c.ele;
|
||
var found = false;
|
||
$(':input', ele.form).each(
|
||
function()
|
||
{
|
||
if (found) {
|
||
$(this).focus();
|
||
return false;
|
||
}
|
||
if (this == ele) {
|
||
found = true;
|
||
}
|
||
}
|
||
);
|
||
} else {
|
||
c.ele.focus();
|
||
}
|
||
c._closeCalendar();
|
||
}
|
||
}
|
||
}
|
||
);
|
||
if (c.isSelected(d)) {
|
||
$td.addClass('selected');
|
||
if (c.settings.selectWeek)
|
||
{
|
||
$td.parent().addClass('selectedWeek');
|
||
}
|
||
} else if (c.selectMultiple && c.numSelected == c.numSelectable) {
|
||
$td.addClass('unselectable');
|
||
}
|
||
|
||
},
|
||
_applyRenderCallbacks : function()
|
||
{
|
||
var c = this;
|
||
$('td', this.context).each(
|
||
function()
|
||
{
|
||
for (var i=0; i<c.renderCallback.length; i++) {
|
||
$td = $(this);
|
||
c.renderCallback[i].apply(this, [$td, Date.fromString($td.data('datePickerDate')), c.displayedMonth, c.displayedYear]);
|
||
}
|
||
}
|
||
);
|
||
return;
|
||
},
|
||
// ele is the clicked button - only proceed if it doesn't have the class disabled...
|
||
// m and y are -1, 0 or 1 depending which direction we want to go in...
|
||
_displayNewMonth : function(ele, m, y)
|
||
{
|
||
if (!$(ele).is('.disabled')) {
|
||
this.setDisplayedMonth(this.displayedMonth + m, this.displayedYear + y, true);
|
||
}
|
||
ele.blur();
|
||
return false;
|
||
},
|
||
_rerenderCalendar : function()
|
||
{
|
||
this._clearCalendar();
|
||
this._renderCalendar();
|
||
},
|
||
_renderCalendar : function()
|
||
{
|
||
// set the title...
|
||
$('h2', this.context).html((new Date(this.displayedYear, this.displayedMonth, 1)).asString($.dpText.HEADER_FORMAT));
|
||
|
||
// render the calendar...
|
||
$('.dp-calendar', this.context).renderCalendar(
|
||
$.extend(
|
||
{},
|
||
this.settings,
|
||
{
|
||
month : this.displayedMonth,
|
||
year : this.displayedYear,
|
||
renderCallback : this.cellRender,
|
||
dpController : this,
|
||
hoverClass : this.hoverClass
|
||
})
|
||
);
|
||
|
||
// update the status of the control buttons and disable dates before startDate or after endDate...
|
||
// TODO: When should the year buttons be disabled? When you can't go forward a whole year from where you are or is that annoying?
|
||
if (this.displayedYear == this.startDate.getFullYear() && this.displayedMonth == this.startDate.getMonth()) {
|
||
$('.dp-nav-prev-year', this.context).addClass('disabled');
|
||
$('.dp-nav-prev-month', this.context).addClass('disabled');
|
||
$('.dp-calendar td.other-month', this.context).each(
|
||
function()
|
||
{
|
||
var $this = $(this);
|
||
if (Number($this.text()) > 20) {
|
||
$this.addClass('disabled');
|
||
}
|
||
}
|
||
);
|
||
var d = this.startDate.getDate();
|
||
$('.dp-calendar td.current-month', this.context).each(
|
||
function()
|
||
{
|
||
var $this = $(this);
|
||
if (Number($this.text()) < d) {
|
||
$this.addClass('disabled');
|
||
}
|
||
}
|
||
);
|
||
} else {
|
||
$('.dp-nav-prev-year', this.context).removeClass('disabled');
|
||
$('.dp-nav-prev-month', this.context).removeClass('disabled');
|
||
var d = this.startDate.getDate();
|
||
if (d > 20) {
|
||
// check if the startDate is last month as we might need to add some disabled classes...
|
||
var st = this.startDate.getTime();
|
||
var sd = new Date(st);
|
||
sd.addMonths(1);
|
||
if (this.displayedYear == sd.getFullYear() && this.displayedMonth == sd.getMonth()) {
|
||
$('.dp-calendar td.other-month', this.context).each(
|
||
function()
|
||
{
|
||
var $this = $(this);
|
||
if (Date.fromString($this.data('datePickerDate')).getTime() < st) {
|
||
$this.addClass('disabled');
|
||
}
|
||
}
|
||
);
|
||
}
|
||
}
|
||
}
|
||
if (this.displayedYear == this.endDate.getFullYear() && this.displayedMonth == this.endDate.getMonth()) {
|
||
$('.dp-nav-next-year', this.context).addClass('disabled');
|
||
$('.dp-nav-next-month', this.context).addClass('disabled');
|
||
$('.dp-calendar td.other-month', this.context).each(
|
||
function()
|
||
{
|
||
var $this = $(this);
|
||
if (Number($this.text()) < 14) {
|
||
$this.addClass('disabled');
|
||
}
|
||
}
|
||
);
|
||
var d = this.endDate.getDate();
|
||
$('.dp-calendar td.current-month', this.context).each(
|
||
function()
|
||
{
|
||
var $this = $(this);
|
||
if (Number($this.text()) > d) {
|
||
$this.addClass('disabled');
|
||
}
|
||
}
|
||
);
|
||
} else {
|
||
$('.dp-nav-next-year', this.context).removeClass('disabled');
|
||
$('.dp-nav-next-month', this.context).removeClass('disabled');
|
||
var d = this.endDate.getDate();
|
||
if (d < 13) {
|
||
// check if the endDate is next month as we might need to add some disabled classes...
|
||
var ed = new Date(this.endDate.getTime());
|
||
ed.addMonths(-1);
|
||
if (this.displayedYear == ed.getFullYear() && this.displayedMonth == ed.getMonth()) {
|
||
$('.dp-calendar td.other-month', this.context).each(
|
||
function()
|
||
{
|
||
var $this = $(this);
|
||
var cellDay = Number($this.text());
|
||
if (cellDay < 13 && cellDay > d) {
|
||
$this.addClass('disabled');
|
||
}
|
||
}
|
||
);
|
||
}
|
||
}
|
||
}
|
||
this._applyRenderCallbacks();
|
||
},
|
||
_closeCalendar : function(programatic, ele)
|
||
{
|
||
if (!ele || ele == this.ele)
|
||
{
|
||
$(document).unbind('mousedown.datepicker');
|
||
$(document).unbind('keydown.datepicker');
|
||
this._clearCalendar();
|
||
$('#dp-popup a').unbind();
|
||
$('#dp-popup').empty().remove();
|
||
if (!programatic) {
|
||
$(this.ele).trigger('dpClosed', [this.getSelected()]);
|
||
}
|
||
}
|
||
},
|
||
// empties the current dp-calendar div and makes sure that all events are unbound
|
||
// and expandos removed to avoid memory leaks...
|
||
_clearCalendar : function()
|
||
{
|
||
// TODO.
|
||
$('.dp-calendar td', this.context).unbind();
|
||
$('.dp-calendar', this.context).empty();
|
||
}
|
||
}
|
||
);
|
||
|
||
// static constants
|
||
$.dpConst = {
|
||
SHOW_HEADER_NONE : 0,
|
||
SHOW_HEADER_SHORT : 1,
|
||
SHOW_HEADER_LONG : 2,
|
||
POS_TOP : 0,
|
||
POS_BOTTOM : 1,
|
||
POS_LEFT : 0,
|
||
POS_RIGHT : 1,
|
||
DP_INTERNAL_FOCUS : 'dpInternalFocusTrigger'
|
||
};
|
||
// localisable text
|
||
$.dpText = {
|
||
TEXT_PREV_YEAR : 'Previous year',
|
||
TEXT_PREV_MONTH : 'Previous month',
|
||
TEXT_NEXT_YEAR : 'Next year',
|
||
TEXT_NEXT_MONTH : 'Next month',
|
||
TEXT_CLOSE : 'Close',
|
||
TEXT_CHOOSE_DATE : 'Choose date',
|
||
HEADER_FORMAT : 'mmmm yyyy'
|
||
};
|
||
// version
|
||
$.dpVersion = '$Id: jquery.datePicker.js 102 2010-09-13 14:00:54Z kelvin.luck $';
|
||
|
||
$.fn.datePicker.defaults = {
|
||
month : undefined,
|
||
year : undefined,
|
||
showHeader : $.dpConst.SHOW_HEADER_SHORT,
|
||
startDate : undefined,
|
||
endDate : undefined,
|
||
inline : false,
|
||
renderCallback : null,
|
||
createButton : true,
|
||
showYearNavigation : true,
|
||
closeOnSelect : true,
|
||
displayClose : false,
|
||
selectMultiple : false,
|
||
numSelectable : Number.MAX_VALUE,
|
||
clickInput : false,
|
||
rememberViewedMonth : true,
|
||
selectWeek : false,
|
||
verticalPosition : $.dpConst.POS_TOP,
|
||
horizontalPosition : $.dpConst.POS_LEFT,
|
||
verticalOffset : 0,
|
||
horizontalOffset : 0,
|
||
hoverClass : 'dp-hover',
|
||
autoFocusNextInput : false
|
||
};
|
||
|
||
function _getController(ele)
|
||
{
|
||
if (ele._dpId) return $.event._dpCache[ele._dpId];
|
||
return false;
|
||
};
|
||
|
||
// make it so that no error is thrown if bgIframe plugin isn't included (allows you to use conditional
|
||
// comments to only include bgIframe where it is needed in IE without breaking this plugin).
|
||
if ($.fn.bgIframe == undefined) {
|
||
$.fn.bgIframe = function() {return this; };
|
||
};
|
||
|
||
|
||
// clean-up
|
||
$(window)
|
||
.bind('unload', function() {
|
||
var els = $.event._dpCache || [];
|
||
for (var i in els) {
|
||
$(els[i].ele)._dpDestroy();
|
||
}
|
||
});
|
||
|
||
|
||
})(jQuery);;/*
|
||
* imgPreview jQuery plugin
|
||
* Copyright (c) 2009 James Padolsey
|
||
* j@qd9.co.uk | http://james.padolsey.com
|
||
* Dual licensed under MIT and GPL.
|
||
* Updated: 09/02/09
|
||
* @author James Padolsey
|
||
* @version 0.22
|
||
*/
|
||
(function($){
|
||
|
||
$.expr[':'].linkingToImage = function(elem, index, match){
|
||
// This will return true if the specified attribute contains a valid link to an image:
|
||
return !! ($(elem).attr(match[3]) && $(elem).attr(match[3]).match(/\.(gif|jpe?g|png|bmp)$/i));
|
||
};
|
||
|
||
$.fn.imgPreview = function(userDefinedSettings){
|
||
|
||
var s = $.extend({
|
||
|
||
/* DEFAULTS */
|
||
|
||
// CSS to be applied to image:
|
||
imgCSS: {},
|
||
// Distance between cursor and preview:
|
||
distanceFromCursor: {top:10, left:10},
|
||
// Boolean, whether or not to preload images:
|
||
preloadImages: true,
|
||
// Callback: run when link is hovered: container is shown:
|
||
onShow: function(){},
|
||
// Callback: container is hidden:
|
||
onHide: function(){},
|
||
// Callback: Run when image within container has loaded:
|
||
onLoad: function(){},
|
||
// ID to give to container (for CSS styling):
|
||
containerID: 'imgPreviewContainer',
|
||
// Class to be given to container while image is loading:
|
||
containerLoadingClass: 'loading',
|
||
// Prefix (if using thumbnails), e.g. 'thumb_'
|
||
thumbPrefix: '',
|
||
// Where to retrieve the image from:
|
||
srcAttr: 'href'
|
||
|
||
}, userDefinedSettings),
|
||
|
||
$container = $('<div/>').attr('id', s.containerID)
|
||
.append('<img/>').hide()
|
||
.css('position','absolute')
|
||
.appendTo('body'),
|
||
|
||
$img = $('img', $container).css(s.imgCSS),
|
||
|
||
// Get all valid elements (linking to images / ATTR with image link):
|
||
$collection = this.filter(':linkingToImage(' + s.srcAttr + ')');
|
||
|
||
// Re-usable means to add prefix (from setting):
|
||
function addPrefix(src) {
|
||
return src && src.replace(/(\/?)([^\/]+)$/,'$1' + s.thumbPrefix + '$2');
|
||
}
|
||
|
||
if (s.preloadImages) {
|
||
(function(i){
|
||
var tempIMG = new Image(),
|
||
callee = arguments.callee;
|
||
var src = $($collection[i]).attr(s.srcAttr)
|
||
if (src)
|
||
{
|
||
tempIMG.src = addPrefix(src);
|
||
tempIMG.onload = function(){
|
||
$collection[i + 1] && callee(i + 1);
|
||
};
|
||
}
|
||
})(0);
|
||
}
|
||
|
||
$collection
|
||
.mousemove(function(e){
|
||
|
||
$container.css({
|
||
top: e.pageY + s.distanceFromCursor.top + 'px',
|
||
left: e.pageX + s.distanceFromCursor.left + 'px'
|
||
});
|
||
|
||
})
|
||
.hover(function(){
|
||
|
||
var link = this;
|
||
$container
|
||
.addClass(s.containerLoadingClass)
|
||
.show();
|
||
$img
|
||
.load(function(){
|
||
$container.removeClass(s.containerLoadingClass);
|
||
$img.show();
|
||
s.onLoad.call($img[0], link);
|
||
})
|
||
.attr( 'src' , addPrefix($(link).attr(s.srcAttr)) );
|
||
s.onShow.call($container[0], link);
|
||
|
||
}, function(){
|
||
|
||
$container.hide();
|
||
$img.unbind('load').attr('src','').hide();
|
||
s.onHide.call($container[0], this);
|
||
|
||
});
|
||
|
||
// Return full selection, not $collection!
|
||
return this;
|
||
|
||
};
|
||
|
||
})(jQuery);;function checkbox_click(event)
|
||
{
|
||
event.stopPropagation();
|
||
do_email(enable_email.url);
|
||
if($(event.target).attr('checked'))
|
||
{
|
||
$(event.target).parent().parent().find("td").addClass('selected').css("backgroundColor","");
|
||
}
|
||
else
|
||
{
|
||
$(event.target).parent().parent().find("td").removeClass();
|
||
}
|
||
}
|
||
|
||
function enable_search(suggest_url,confirm_search_message,format_item)
|
||
{
|
||
if (!format_item) {
|
||
format_item = function(results) {
|
||
return results[0];
|
||
};
|
||
}
|
||
//Keep track of enable_email has been called
|
||
if(!enable_search.enabled)
|
||
enable_search.enabled=true;
|
||
|
||
$('#search').click(function()
|
||
{
|
||
$(this).attr('value','');
|
||
});
|
||
|
||
$("#search").autocomplete(suggest_url,{max:100,delay:10, selectFirst: false, formatItem : format_item});
|
||
$("#search").result(function(event, data, formatted)
|
||
{
|
||
do_search(true);
|
||
});
|
||
|
||
attach_search_listener();
|
||
|
||
$('#search_form').submit(function(event)
|
||
{
|
||
event.preventDefault();
|
||
// reset page number when selecting a specific page number
|
||
$('#limit_from').val(0);
|
||
if(get_selected_values().length >0)
|
||
{
|
||
if(!confirm(confirm_search_message))
|
||
return;
|
||
}
|
||
do_search(true);
|
||
});
|
||
}
|
||
enable_search.enabled=false;
|
||
|
||
function attach_search_listener()
|
||
{
|
||
// prevent redirecting to link when search enabled
|
||
$("#pagination a").click(function(event) {
|
||
if ($("#search").val() || $("#search_form input:checked")) {
|
||
event.preventDefault();
|
||
// set limit_from to value included in the link
|
||
var uri_segments = event.currentTarget.href.split('/');
|
||
var limit_from = uri_segments.pop();
|
||
$('#limit_from').val(limit_from);
|
||
do_search(true);
|
||
}
|
||
});
|
||
}
|
||
|
||
function do_search(show_feedback,on_complete)
|
||
{
|
||
//If search is not enabled, don't do anything
|
||
if(!enable_search.enabled)
|
||
return;
|
||
|
||
if(show_feedback)
|
||
$('#search').addClass("ac_loading");
|
||
|
||
$.post(
|
||
$('#search_form').attr('action'),
|
||
// serialize all the input fields in the form
|
||
$('#search_form').serialize(),
|
||
function(response) {
|
||
$('#sortable_table tbody').html(response.rows);
|
||
if(typeof on_complete=='function')
|
||
on_complete();
|
||
$('#search').removeClass("ac_loading");
|
||
//$('#spinner').hide();
|
||
//re-init elements in new table, as table tbody children were replaced
|
||
tb_init('#sortable_table a.thickbox');
|
||
$('#pagination').html(response.pagination);
|
||
$('#sortable_table tbody :checkbox').click(checkbox_click);
|
||
$("#select_all").attr('checked',false);
|
||
if (response.total_rows > 0)
|
||
{
|
||
update_sortable_table();
|
||
enable_row_selection();
|
||
}
|
||
attach_search_listener();
|
||
}, "json"
|
||
);
|
||
}
|
||
|
||
function enable_email(email_url)
|
||
{
|
||
//Keep track of enable_email has been called
|
||
if(!enable_email.enabled)
|
||
enable_email.enabled=true;
|
||
|
||
//store url in function cache
|
||
if(!enable_email.url)
|
||
{
|
||
enable_email.url=email_url;
|
||
}
|
||
|
||
$('#select_all, #sortable_table tbody :checkbox').click(checkbox_click);
|
||
}
|
||
enable_email.enabled=false;
|
||
enable_email.url=false;
|
||
|
||
function do_email(url)
|
||
{
|
||
//If email is not enabled, don't do anything
|
||
if(!enable_email.enabled)
|
||
return;
|
||
|
||
$.post(url, { 'ids[]': get_selected_values() },function(response)
|
||
{
|
||
$('#email').attr('href',response);
|
||
});
|
||
|
||
}
|
||
|
||
function enable_checkboxes()
|
||
{
|
||
$('#sortable_table tbody :checkbox').click(checkbox_click);
|
||
}
|
||
|
||
function enable_delete(confirm_message,none_selected_message)
|
||
{
|
||
//Keep track of enable_delete has been called
|
||
if(!enable_delete.enabled)
|
||
enable_delete.enabled=true;
|
||
|
||
$("#delete").click(function(event)
|
||
{
|
||
event.preventDefault();
|
||
if($("#sortable_table tbody :checkbox:checked").length >0)
|
||
{
|
||
if(confirm(confirm_message))
|
||
{
|
||
do_delete($(this).attr('href'));
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
alert(none_selected_message);
|
||
}
|
||
});
|
||
}
|
||
enable_delete.enabled=false;
|
||
|
||
function do_delete(url)
|
||
{
|
||
//If delete is not enabled, don't do anything
|
||
if(!enable_delete.enabled)
|
||
return;
|
||
|
||
var row_ids = get_selected_values();
|
||
var selected_rows = get_selected_rows();
|
||
$.post(url, { 'ids[]': row_ids },function(response)
|
||
{
|
||
//delete was successful, remove checkbox rows
|
||
if(response.success)
|
||
{
|
||
$(selected_rows).each(function(index, dom)
|
||
{
|
||
$(this).find("td").animate({backgroundColor:"green"},1200,"linear")
|
||
.end().animate({opacity:0},1200,"linear",function()
|
||
{
|
||
$(this).remove();
|
||
//Re-init sortable table as we removed a row
|
||
$("#sortable_table tbody tr").length > 0 && update_sortable_table();
|
||
|
||
});
|
||
});
|
||
|
||
set_feedback(response.message,'success_message',false);
|
||
}
|
||
else
|
||
{
|
||
set_feedback(response.message,'error_message',true);
|
||
}
|
||
|
||
|
||
},"json");
|
||
}
|
||
|
||
function enable_bulk_edit(none_selected_message)
|
||
{
|
||
//Keep track of enable_bulk_edit has been called
|
||
if(!enable_bulk_edit.enabled)
|
||
enable_bulk_edit.enabled=true;
|
||
|
||
$('#bulk_edit').click(function(event)
|
||
{
|
||
event.preventDefault();
|
||
if($("#sortable_table tbody :checkbox:checked").length >0)
|
||
{
|
||
tb_show($(this).attr('title'),$(this).attr('href'),false);
|
||
$(this).blur();
|
||
}
|
||
else
|
||
{
|
||
alert(none_selected_message);
|
||
}
|
||
});
|
||
}
|
||
enable_bulk_edit.enabled=false;
|
||
|
||
function enable_select_all()
|
||
{
|
||
//Keep track of enable_select_all has been called
|
||
if(!enable_select_all.enabled)
|
||
enable_select_all.enabled=true;
|
||
|
||
$('#select_all').click(function()
|
||
{
|
||
if($(this).attr('checked'))
|
||
{
|
||
$("#sortable_table tbody :checkbox").each(function()
|
||
{
|
||
$(this).attr('checked',true);
|
||
$(this).parent().parent().find("td").addClass('selected').css("backgroundColor","");
|
||
|
||
});
|
||
}
|
||
else
|
||
{
|
||
$("#sortable_table tbody :checkbox").each(function()
|
||
{
|
||
$(this).attr('checked',false);
|
||
$(this).parent().parent().find("td").removeClass();
|
||
});
|
||
}
|
||
});
|
||
}
|
||
enable_select_all.enabled=false;
|
||
|
||
function enable_row_selection(rows)
|
||
{
|
||
//Keep track of enable_row_selection has been called
|
||
if(!enable_row_selection.enabled)
|
||
enable_row_selection.enabled=true;
|
||
|
||
if(typeof rows =="undefined")
|
||
rows=$("#sortable_table tbody tr");
|
||
|
||
rows.hover(
|
||
function row_over()
|
||
{
|
||
$(this).find("td").addClass('over').css("backgroundColor","");
|
||
$(this).css("cursor","pointer");
|
||
},
|
||
|
||
function row_out()
|
||
{
|
||
if(!$(this).find("td").hasClass("selected"))
|
||
{
|
||
$(this).find("td").removeClass();
|
||
}
|
||
}
|
||
);
|
||
|
||
rows.click(function row_click(event)
|
||
{
|
||
|
||
var checkbox = $(this).find(":checkbox");
|
||
checkbox.attr('checked',!checkbox.attr('checked'));
|
||
do_email(enable_email.url);
|
||
|
||
if(checkbox.attr('checked'))
|
||
{
|
||
$(this).find("td").addClass('selected').css("backgroundColor","");
|
||
}
|
||
else
|
||
{
|
||
$(this).find("td").removeClass();
|
||
}
|
||
});
|
||
}
|
||
enable_row_selection.enabled=false;
|
||
|
||
function update_sortable_table()
|
||
{
|
||
//let tablesorter know we changed <tbody> and then triger a resort
|
||
$("#sortable_table").trigger("update");
|
||
if(typeof $("#sortable_table")[0].config!="undefined")
|
||
{
|
||
var sorting = $("#sortable_table")[0].config.sortList;
|
||
$("#sortable_table").trigger("sorton",[sorting]);
|
||
}
|
||
}
|
||
|
||
function get_table_row(id) {
|
||
id = id || $("input[name='sale_id']").val();
|
||
var $element = $("#sortable_table tbody :checkbox[value='" + id + "']");
|
||
if ($element.length === 0) {
|
||
$element = $("#sortable_table tbody a[href*='/" + id + "/']");
|
||
}
|
||
return $element;
|
||
}
|
||
|
||
function update_row(row_id,url,callback)
|
||
{
|
||
$.post(url, { 'row_id': row_id },function(response)
|
||
{
|
||
//Replace previous row
|
||
var row_to_update = get_table_row(row_id).parent().parent();
|
||
row_to_update.replaceWith(response);
|
||
reinit_row(row_id);
|
||
hightlight_row(row_id);
|
||
callback && typeof(callback) == "function" && callback();
|
||
}, 'html');
|
||
}
|
||
|
||
function reinit_row(checkbox_id)
|
||
{
|
||
var new_checkbox = $("#sortable_table tbody tr :checkbox[value="+checkbox_id+"]");
|
||
var new_row = new_checkbox.parent().parent();
|
||
enable_row_selection(new_row);
|
||
//Re-init some stuff as we replaced row
|
||
update_sortable_table();
|
||
tb_init(new_row.find("a.thickbox"));
|
||
//re-enable e-mail
|
||
new_checkbox.click(checkbox_click);
|
||
}
|
||
|
||
function animate_row(row,color)
|
||
{
|
||
color = color || "#e1ffdd";
|
||
row.find("td").css("backgroundColor", "#ffffff").animate({backgroundColor:color},"slow","linear")
|
||
.animate({backgroundColor:color},5000)
|
||
.animate({backgroundColor:"#ffffff"},"slow","linear");
|
||
}
|
||
|
||
function hightlight_row(checkbox_id)
|
||
{
|
||
var new_checkbox = $("#sortable_table tbody tr :checkbox[value="+checkbox_id+"]");
|
||
var new_row = new_checkbox.parent().parent();
|
||
|
||
animate_row(new_row);
|
||
}
|
||
|
||
function get_selected_values()
|
||
{
|
||
var selected_values = new Array();
|
||
$("#sortable_table tbody :checkbox:checked").each(function()
|
||
{
|
||
selected_values.push($(this).val());
|
||
});
|
||
return selected_values;
|
||
}
|
||
|
||
function get_selected_rows()
|
||
{
|
||
var selected_rows = new Array();
|
||
$("#sortable_table tbody :checkbox:checked").each(function()
|
||
{
|
||
selected_rows.push($(this).parent().parent());
|
||
});
|
||
return selected_rows;
|
||
}
|
||
|
||
function get_visible_checkbox_ids()
|
||
{
|
||
var row_ids = new Array();
|
||
$("#sortable_table tbody :checkbox").each(function()
|
||
{
|
||
row_ids.push($(this).val());
|
||
});
|
||
return row_ids;
|
||
};(function($) {
|
||
|
||
function http_s(url)
|
||
{
|
||
return document.location.protocol + '//' + url;
|
||
}
|
||
|
||
if (window.sessionStorage && !sessionStorage['country'])
|
||
{
|
||
$.ajax({
|
||
type: "GET",
|
||
url: http_s('ipinfo.io/json'),
|
||
success: function(response) {
|
||
sessionStorage['country'] = response.country;
|
||
}, dataType: 'jsonp'
|
||
});
|
||
}
|
||
|
||
var url = http_s('nominatim.openstreetmap.org/search');
|
||
|
||
var handle_auto_completion = function(fields) {
|
||
return function(event, results, formatted) {
|
||
if (results != null && results.length > 0) {
|
||
// handle auto completion
|
||
for(var i in fields) {
|
||
$("#" + fields[i]).val(results[i]);
|
||
}
|
||
return false;
|
||
}
|
||
return true;
|
||
};
|
||
};
|
||
|
||
var set_field_values = function(results) {
|
||
return results[0] + ' - ' + results[1];
|
||
};
|
||
|
||
var create_parser = function(field_name, parse_format)
|
||
{
|
||
var parse_field = function(format, address)
|
||
{
|
||
var fields = [];
|
||
$.each(format.split("|"), function(key, value)
|
||
{
|
||
if (address[value] && fields.length < 2 && $.inArray(address[value], fields) === -1)
|
||
{
|
||
fields.push(address[value]);
|
||
}
|
||
});
|
||
return fields[0] + (fields[1] ? ' (' + fields[1] + ')' : '');
|
||
};
|
||
|
||
return function(data)
|
||
{
|
||
var parsed = [];
|
||
$.each(data, function(index, value)
|
||
{
|
||
var address = value.address;
|
||
var row = [];
|
||
$.each(parse_format, function(key, format)
|
||
{
|
||
row.push(parse_field(format, address));
|
||
});
|
||
parsed[index] = {
|
||
data: row,
|
||
value: address[field_name],
|
||
result: address[field_name]
|
||
};
|
||
});
|
||
return parsed;
|
||
};
|
||
};
|
||
|
||
var request_params = function(id, key, language)
|
||
{
|
||
return function() {
|
||
var result = {
|
||
format: 'json',
|
||
limit: 5,
|
||
addressdetails: 1,
|
||
country: window['sessionStorage'] ? sessionStorage['country'] : 'be',
|
||
'accept-language' : language || navigator.language
|
||
};
|
||
result[key || id] = $("#"+id).val();
|
||
return result;
|
||
}
|
||
|
||
};
|
||
|
||
var nominatim = {
|
||
|
||
init : function(options) {
|
||
|
||
$.each(options.fields, function(key, value)
|
||
{
|
||
var handle_field_completion = handle_auto_completion(value.dependencies);
|
||
$("#" + key).autocomplete(url,{
|
||
max:100,
|
||
minChars:3,
|
||
delay:500,
|
||
formatItem: set_field_values,
|
||
type: 'GET',
|
||
dataType:'json',
|
||
extraParams: request_params(key, value.response && value.response.field, options.language),
|
||
parse: create_parser(key, (value.response && value.response.format) || value.dependencies)
|
||
});
|
||
$("#" + key).result(handle_field_completion);
|
||
});
|
||
}
|
||
|
||
};
|
||
|
||
window['nominatim'] = nominatim;
|
||
|
||
})(jQuery);;/* SWFObject v2.1 <http://code.google.com/p/swfobject/>
|
||
Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
|
||
This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
|
||
*/
|
||
var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("<script id=__ie_ondomload defer=true src=//:><\/script>");J=C("__ie_ondomload");if(J){I(J,"onreadystatechange",S)}}catch(q){}}if(h.webkit&&typeof K.readyState!=b){Z=setInterval(function(){if(/loaded|complete/.test(K.readyState)){E()}},10)}if(typeof K.addEventListener!=b){K.addEventListener("DOMContentLoaded",E,null)}R(E)}();function S(){if(J.readyState=="complete"){J.parentNode.removeChild(J);E()}}function E(){if(e){return }if(h.ie&&h.win){var v=a("span");try{var u=K.getElementsByTagName("body")[0].appendChild(v);u.parentNode.removeChild(u)}catch(w){return }}e=true;if(Z){clearInterval(Z);Z=null}var q=o.length;for(var r=0;r<q;r++){o[r]()}}function f(q){if(e){q()}else{o[o.length]=q}}function R(r){if(typeof j.addEventListener!=b){j.addEventListener("load",r,false)}else{if(typeof K.addEventListener!=b){K.addEventListener("load",r,false)}else{if(typeof j.attachEvent!=b){I(j,"onload",r)}else{if(typeof j.onload=="function"){var q=j.onload;j.onload=function(){q();r()}}else{j.onload=r}}}}}function H(){var t=N.length;for(var q=0;q<t;q++){var u=N[q].id;if(h.pv[0]>0){var r=C(u);if(r){N[q].width=r.getAttribute("width")?r.getAttribute("width"):"0";N[q].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(c(N[q].swfVersion)){if(h.webkit&&h.webkit<312){Y(r)}W(u,true)}else{if(N[q].expressInstall&&!A&&c("6.0.65")&&(h.win||h.mac)){k(N[q])}else{O(r)}}}}else{W(u,true)}}}function Y(t){var q=t.getElementsByTagName(Q)[0];if(q){var w=a("embed"),y=q.attributes;if(y){var v=y.length;for(var u=0;u<v;u++){if(y[u].nodeName=="DATA"){w.setAttribute("src",y[u].nodeValue)}else{w.setAttribute(y[u].nodeName,y[u].nodeValue)}}}var x=q.childNodes;if(x){var z=x.length;for(var r=0;r<z;r++){if(x[r].nodeType==1&&x[r].nodeName=="PARAM"){w.setAttribute(x[r].getAttribute("name"),x[r].getAttribute("value"))}}}t.parentNode.replaceChild(w,t)}}function k(w){A=true;var u=C(w.id);if(u){if(w.altContentId){var y=C(w.altContentId);if(y){M=y;l=w.altContentId}}else{M=G(u)}if(!(/%$/.test(w.width))&&parseInt(w.width,10)<310){w.width="310"}if(!(/%$/.test(w.height))&&parseInt(w.height,10)<137){w.height="137"}K.title=K.title.slice(0,47)+" - Flash Player Installation";var z=h.ie&&h.win?"ActiveX":"PlugIn",q=K.title,r="MMredirectURL="+j.location+"&MMplayerType="+z+"&MMdoctitle="+q,x=w.id;if(h.ie&&h.win&&u.readyState!=4){var t=a("div");x+="SWFObjectNew";t.setAttribute("id",x);u.parentNode.insertBefore(t,u);u.style.display="none";var v=function(){u.parentNode.removeChild(u)};I(j,"onload",v)}U({data:w.expressInstall,id:m,width:w.width,height:w.height},{flashvars:r},x)}}function O(t){if(h.ie&&h.win&&t.readyState!=4){var r=a("div");t.parentNode.insertBefore(r,t);r.parentNode.replaceChild(G(t),r);t.style.display="none";var q=function(){t.parentNode.removeChild(t)};I(j,"onload",q)}else{t.parentNode.replaceChild(G(t),t)}}function G(v){var u=a("div");if(h.win&&h.ie){u.innerHTML=v.innerHTML}else{var r=v.getElementsByTagName(Q)[0];if(r){var w=r.childNodes;if(w){var q=w.length;for(var t=0;t<q;t++){if(!(w[t].nodeType==1&&w[t].nodeName=="PARAM")&&!(w[t].nodeType==8)){u.appendChild(w[t].cloneNode(true))}}}}}return u}function U(AG,AE,t){var q,v=C(t);if(v){if(typeof AG.id==b){AG.id=t}if(h.ie&&h.win){var AF="";for(var AB in AG){if(AG[AB]!=Object.prototype[AB]){if(AB.toLowerCase()=="data"){AE.movie=AG[AB]}else{if(AB.toLowerCase()=="styleclass"){AF+=' class="'+AG[AB]+'"'}else{if(AB.toLowerCase()!="classid"){AF+=" "+AB+'="'+AG[AB]+'"'}}}}}var AD="";for(var AA in AE){if(AE[AA]!=Object.prototype[AA]){AD+='<param name="'+AA+'" value="'+AE[AA]+'" />'}}v.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AF+">"+AD+"</object>";i[i.length]=AG.id;q=C(AG.id)}else{if(h.webkit&&h.webkit<312){var AC=a("embed");AC.setAttribute("type",P);for(var z in AG){if(AG[z]!=Object.prototype[z]){if(z.toLowerCase()=="data"){AC.setAttribute("src",AG[z])}else{if(z.toLowerCase()=="styleclass"){AC.setAttribute("class",AG[z])}else{if(z.toLowerCase()!="classid"){AC.setAttribute(z,AG[z])}}}}}for(var y in AE){if(AE[y]!=Object.prototype[y]){if(y.toLowerCase()!="movie"){AC.setAttribute(y,AE[y])}}}v.parentNode.replaceChild(AC,v);q=AC}else{var u=a(Q);u.setAttribute("type",P);for(var x in AG){if(AG[x]!=Object.prototype[x]){if(x.toLowerCase()=="styleclass"){u.setAttribute("class",AG[x])}else{if(x.toLowerCase()!="classid"){u.setAttribute(x,AG[x])}}}}for(var w in AE){if(AE[w]!=Object.prototype[w]&&w.toLowerCase()!="movie"){F(u,w,AE[w])}}v.parentNode.replaceChild(u,v);q=u}}}return q}function F(t,q,r){var u=a("param");u.setAttribute("name",q);u.setAttribute("value",r);t.appendChild(u)}function X(r){var q=C(r);if(q&&(q.nodeName=="OBJECT"||q.nodeName=="EMBED")){if(h.ie&&h.win){if(q.readyState==4){B(r)}else{j.attachEvent("onload",function(){B(r)})}}else{q.parentNode.removeChild(q)}}}function B(t){var r=C(t);if(r){for(var q in r){if(typeof r[q]=="function"){r[q]=null}}r.parentNode.removeChild(r)}}function C(t){var q=null;try{q=K.getElementById(t)}catch(r){}return q}function a(q){return K.createElement(q)}function I(t,q,r){t.attachEvent(q,r);d[d.length]=[t,q,r]}function c(t){var r=h.pv,q=t.split(".");q[0]=parseInt(q[0],10);q[1]=parseInt(q[1],10)||0;q[2]=parseInt(q[2],10)||0;return(r[0]>q[0]||(r[0]==q[0]&&r[1]>q[1])||(r[0]==q[0]&&r[1]==q[1]&&r[2]>=q[2]))?true:false}function V(v,r){if(h.ie&&h.mac){return }var u=K.getElementsByTagName("head")[0],t=a("style");t.setAttribute("type","text/css");t.setAttribute("media","screen");if(!(h.ie&&h.win)&&typeof K.createTextNode!=b){t.appendChild(K.createTextNode(v+" {"+r+"}"))}u.appendChild(t);if(h.ie&&h.win&&typeof K.styleSheets!=b&&K.styleSheets.length>0){var q=K.styleSheets[K.styleSheets.length-1];if(typeof q.addRule==Q){q.addRule(v,r)}}}function W(t,q){var r=q?"visible":"hidden";if(e&&C(t)){C(t).style.visibility=r}else{V("#"+t,"visibility:"+r)}}function g(s){var r=/[\\\"<>\.;]/;var q=r.exec(s)!=null;return q?encodeURIComponent(s):s}var D=function(){if(h.ie&&h.win){window.attachEvent("onunload",function(){var w=d.length;for(var v=0;v<w;v++){d[v][0].detachEvent(d[v][1],d[v][2])}var t=i.length;for(var u=0;u<t;u++){X(i[u])}for(var r in h){h[r]=null}h=null;for(var q in swfobject){swfobject[q]=null}swfobject=null})}}();return{registerObject:function(u,q,t){if(!h.w3cdom||!u||!q){return }var r={};r.id=u;r.swfVersion=q;r.expressInstall=t?t:false;N[N.length]=r;W(u,false)},getObjectById:function(v){var q=null;if(h.w3cdom){var t=C(v);if(t){var u=t.getElementsByTagName(Q)[0];if(!u||(u&&typeof t.SetVariable!=b)){q=t}else{if(typeof u.SetVariable!=b){q=u}}}}return q},embedSWF:function(x,AE,AB,AD,q,w,r,z,AC){if(!h.w3cdom||!x||!AE||!AB||!AD||!q){return }AB+="";AD+="";if(c(q)){W(AE,false);var AA={};if(AC&&typeof AC===Q){for(var v in AC){if(AC[v]!=Object.prototype[v]){AA[v]=AC[v]}}}AA.data=x;AA.width=AB;AA.height=AD;var y={};if(z&&typeof z===Q){for(var u in z){if(z[u]!=Object.prototype[u]){y[u]=z[u]}}}if(r&&typeof r===Q){for(var t in r){if(r[t]!=Object.prototype[t]){if(typeof y.flashvars!=b){y.flashvars+="&"+t+"="+r[t]}else{y.flashvars=t+"="+r[t]}}}}f(function(){U(AA,y,AE);if(AA.id==AE){W(AE,true)}})}else{if(w&&!A&&c("6.0.65")&&(h.win||h.mac)){A=true;W(AE,false);f(function(){var AF={};AF.id=AF.altContentId=AE;AF.width=AB;AF.height=AD;AF.expressInstall=w;k(AF)})}}},getFlashPlayerVersion:function(){return{major:h.pv[0],minor:h.pv[1],release:h.pv[2]}},hasFlashPlayerVersion:c,createSWF:function(t,r,q){if(h.w3cdom){return U(t,r,q)}else{return undefined}},removeSWF:function(q){if(h.w3cdom){X(q)}},createCSS:function(r,q){if(h.w3cdom){V(r,q)}},addDomLoadEvent:f,addLoadEvent:R,getQueryParamValue:function(v){var u=K.location.search||K.location.hash;if(v==null){return g(u)}if(u){var t=u.substring(1).split("&");for(var r=0;r<t.length;r++){if(t[r].substring(0,t[r].indexOf("="))==v){return g(t[r].substring((t[r].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A&&M){var q=C(m);if(q){q.parentNode.replaceChild(M,q);if(l){W(l,true);if(h.ie&&h.win){M.style.display="block"}}M=null;l=null;A=false}}}}}();;
|
||
/* http://www.menucool.com/tabbed-content Free to use. Version 2013.7.6 */
|
||
(function(){var g=function(a){if(a&&a.stopPropagation)a.stopPropagation();else window.event.cancelBubble=true;var b=a?a:window.event;b.preventDefault&&b.preventDefault()},d=function(a,c,b){if(a.addEventListener)a.addEventListener(c,b,false);else a.attachEvent&&a.attachEvent("on"+c,b)},a=function(c,a){var b=new RegExp("(^| )"+a+"( |$)");return b.test(c.className)?true:false},j=function(b,c,d){if(!a(b,c))if(b.className=="")b.className=c;else if(d)b.className=c+" "+b.className;else b.className+=" "+c},h=function(a,b){var c=new RegExp("(^| )"+b+"( |$)");a.className=a.className.replace(c,"$1");a.className=a.className.replace(/ $/,"")},e=function(){var b=window.location.pathname;if(b.indexOf("/")!=-1)b=b.split("/");var a=b[b.length-1]||"root";if(a.indexOf(".")!=-1)a=a.substring(0,a.indexOf("."));if(a>20)a=a.substring(a.length-19);return a},c="mi"+e(),b=function(b,a){this.g(b,a)};b.prototype={h:function(){var b=new RegExp(c+this.a+"=(\\d+)"),a=document.cookie.match(b);return a?a[1]:this.i()},i:function(){for(var b=0,c=this.b.length;b<c;b++)if(a(this.b[b].parentNode,"selected"))return b;return 0},j:function(b,d){var c=document.getElementById(b.TargetId);if(!c)return;this.l(c);for(var a=0;a<this.b.length;a++)if(this.b[a]==b){j(b.parentNode,"selected");d&&this.d&&this.k(this.a,a)}else h(this.b[a].parentNode,"selected")},k:function(a,b){document.cookie=c+a+"="+b+"; path=/"},l:function(b){for(var a=0;a<this.c.length;a++)this.c[a].style.display=this.c[a].id==b.id?"block":"none"},m:function(){this.c=[];for(var c=this,a=0;a<this.b.length;a++){var b=document.getElementById(this.b[a].TargetId);if(b){this.c.push(b);d(this.b[a],"click",function(b){var a=this;if(a===window)a=window.event.srcElement;c.j(a,1);g(b);return false})}}},g:function(f,h){this.a=h;this.b=[];for(var e=f.getElementsByTagName("a"),i=/#([^?]+)/,a,b,c=0;c<e.length;c++){b=e[c];a=b.getAttribute("href");if(a.indexOf("#")==-1)continue;else{var d=a.match(i);if(d){a=d[1];b.TargetId=a;this.b.push(b)}else continue}}var g=f.getAttribute("data-persist")||"";this.d=g.toLowerCase()=="true"?1:0;this.m();this.n()},n:function(){var a=this.d?parseInt(this.h()):this.i();if(a>=this.b.length)a=0;this.j(this.b[a],0)}};var k=[],i=function(e){var b=false;function a(){if(b)return;b=true;setTimeout(e,4)}if(document.addEventListener)document.addEventListener("DOMContentLoaded",a,false);else if(document.attachEvent){try{var f=window.frameElement!=null}catch(g){}if(document.documentElement.doScroll&&!f){function c(){if(b)return;try{document.documentElement.doScroll("left");a()}catch(d){setTimeout(c,10)}}c()}document.attachEvent("onreadystatechange",function(){document.readyState==="complete"&&a()})}d(window,"load",a)},f=function(){for(var d=document.getElementsByTagName("ul"),c=0,e=d.length;c<e;c++)a(d[c],"tabs")&&k.push(new b(d[c],c))};i(f);return{}})();/*
|
||
* Thickbox 3.1 - One Box To Rule Them All.
|
||
* By Cody Lindley (http://www.codylindley.com)
|
||
* Copyright (c) 2007 cody lindley
|
||
* Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
|
||
*/
|
||
|
||
var tb_pathToImage = "images/loading_animation.gif";
|
||
|
||
/*!!!!!!!!!!!!!!!!! edit below this line at your own risk !!!!!!!!!!!!!!!!!!!!!!!*/
|
||
|
||
//on page load call tb_init
|
||
$(document).ready(function(){
|
||
tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
|
||
imgLoader = new Image();// preload image
|
||
imgLoader.src = tb_pathToImage;
|
||
});
|
||
|
||
//add thickbox to href & area elements that have a class of .thickbox
|
||
function tb_init(domChunk){
|
||
$(domChunk).click(function(){
|
||
var t = this.title || this.name || null;
|
||
var a = this.href || this.alt;
|
||
var g = this.rel || false;
|
||
tb_show(t,a,g);
|
||
this.blur();
|
||
return false;
|
||
});
|
||
}
|
||
|
||
function tb_show(caption, url, imageGroup) {//function called when the user clicks on a thickbox link
|
||
|
||
try {
|
||
if (typeof document.body.style.maxHeight === "undefined") {//if IE 6
|
||
$("body","html").css({height: "100%", width: "100%"});
|
||
$("html").css("overflow","hidden");
|
||
if (document.getElementById("TB_HideSelect") === null) {//iframe to hide select elements in ie6
|
||
$("body").append("<iframe id='TB_HideSelect'></iframe><div id='TB_overlay'></div><div id='TB_window'></div>");
|
||
$("#TB_overlay").click(tb_remove);
|
||
}
|
||
}else{//all others
|
||
if(document.getElementById("TB_overlay") === null){
|
||
$("body").append("<div id='TB_overlay'></div><div id='TB_window'></div>");
|
||
$("#TB_overlay").click(tb_remove);
|
||
}
|
||
}
|
||
|
||
if(tb_detectMacXFF()){
|
||
$("#TB_overlay").addClass("TB_overlayMacFFBGHack");//use png overlay so hide flash
|
||
}else{
|
||
$("#TB_overlay").addClass("TB_overlayBG");//use background and opacity
|
||
}
|
||
|
||
if(caption===null){caption="";}
|
||
$("body").append("<div id='TB_load'><img src='"+imgLoader.src+"' /></div>");//add loader to the page
|
||
$('#TB_load').show();//show loader
|
||
|
||
var baseURL;
|
||
if(url.indexOf("?")!==-1){ //ff there is a query string involved
|
||
baseURL = url.substr(0, url.indexOf("?"));
|
||
}else{
|
||
baseURL = url;
|
||
}
|
||
|
||
var urlString = /\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;
|
||
var urlType = baseURL.toLowerCase().match(urlString);
|
||
|
||
if(urlType == '.jpg' || urlType == '.jpeg' || urlType == '.png' || urlType == '.gif' || urlType == '.bmp'){//code to show images
|
||
|
||
TB_PrevCaption = "";
|
||
TB_PrevURL = "";
|
||
TB_PrevHTML = "";
|
||
TB_NextCaption = "";
|
||
TB_NextURL = "";
|
||
TB_NextHTML = "";
|
||
TB_imageCount = "";
|
||
TB_FoundURL = false;
|
||
if(imageGroup){
|
||
TB_TempArray = $("a[@rel="+imageGroup+"]").get();
|
||
for (TB_Counter = 0; ((TB_Counter < TB_TempArray.length) && (TB_NextHTML === "")); TB_Counter++) {
|
||
var urlTypeTemp = TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);
|
||
if (!(TB_TempArray[TB_Counter].href == url)) {
|
||
if (TB_FoundURL) {
|
||
TB_NextCaption = TB_TempArray[TB_Counter].title;
|
||
TB_NextURL = TB_TempArray[TB_Counter].href;
|
||
TB_NextHTML = "<span id='TB_next'> <a href='#'>Next ></a></span>";
|
||
} else {
|
||
TB_PrevCaption = TB_TempArray[TB_Counter].title;
|
||
TB_PrevURL = TB_TempArray[TB_Counter].href;
|
||
TB_PrevHTML = "<span id='TB_prev'> <a href='#'>< Prev</a></span>";
|
||
}
|
||
} else {
|
||
TB_FoundURL = true;
|
||
TB_imageCount = "Image " + (TB_Counter + 1) +" of "+ (TB_TempArray.length);
|
||
}
|
||
}
|
||
}
|
||
|
||
imgPreloader = new Image();
|
||
imgPreloader.onload = function(){
|
||
imgPreloader.onload = null;
|
||
|
||
// Resizing large images - orginal by Christian Montoya edited by me.
|
||
var pagesize = tb_getPageSize();
|
||
var x = pagesize[0] - 150;
|
||
var y = pagesize[1] - 150;
|
||
var imageWidth = imgPreloader.width;
|
||
var imageHeight = imgPreloader.height;
|
||
if (imageWidth > x) {
|
||
imageHeight = imageHeight * (x / imageWidth);
|
||
imageWidth = x;
|
||
if (imageHeight > y) {
|
||
imageWidth = imageWidth * (y / imageHeight);
|
||
imageHeight = y;
|
||
}
|
||
} else if (imageHeight > y) {
|
||
imageWidth = imageWidth * (y / imageHeight);
|
||
imageHeight = y;
|
||
if (imageWidth > x) {
|
||
imageHeight = imageHeight * (x / imageWidth);
|
||
imageWidth = x;
|
||
}
|
||
}
|
||
// End Resizing
|
||
|
||
TB_WIDTH = imageWidth + 30;
|
||
TB_HEIGHT = imageHeight + 60;
|
||
$("#TB_window").append("<a href='' id='TB_ImageOff' title='Close'><img id='TB_Image' src='"+url+"' width='"+imageWidth+"' height='"+imageHeight+"' alt='"+caption+"'/></a>" + "<div id='TB_caption'>"+caption+"<div id='TB_secondLine'>" + TB_imageCount + TB_PrevHTML + TB_NextHTML + "</div></div><div id='TB_closeWindow'><a href='#' id='TB_closeWindowButton' title='Close'>X</a></div>");
|
||
|
||
$("#TB_closeWindowButton").click(tb_remove);
|
||
|
||
if (!(TB_PrevHTML === "")) {
|
||
function goPrev(){
|
||
if($(document).unbind("click",goPrev)){$(document).unbind("click",goPrev);}
|
||
$("#TB_window").remove();
|
||
$("body").append("<div id='TB_window'></div>");
|
||
tb_show(TB_PrevCaption, TB_PrevURL, imageGroup);
|
||
return false;
|
||
}
|
||
$("#TB_prev").click(goPrev);
|
||
}
|
||
|
||
if (!(TB_NextHTML === "")) {
|
||
function goNext(){
|
||
$("#TB_window").remove();
|
||
$("body").append("<div id='TB_window'></div>");
|
||
tb_show(TB_NextCaption, TB_NextURL, imageGroup);
|
||
return false;
|
||
}
|
||
$("#TB_next").click(goNext);
|
||
|
||
}
|
||
|
||
document.onkeydown = function(e){
|
||
if (e == null) { // ie
|
||
keycode = event.keyCode;
|
||
} else { // mozilla
|
||
keycode = e.which;
|
||
}
|
||
if(keycode == 27){ // close
|
||
tb_remove();
|
||
} else if(keycode == 190){ // display previous image
|
||
if(!(TB_NextHTML == "")){
|
||
document.onkeydown = "";
|
||
goNext();
|
||
}
|
||
} else if(keycode == 188){ // display next image
|
||
if(!(TB_PrevHTML == "")){
|
||
document.onkeydown = "";
|
||
goPrev();
|
||
}
|
||
}
|
||
};
|
||
|
||
tb_position();
|
||
$("#TB_load").remove();
|
||
$("#TB_ImageOff").click(tb_remove);
|
||
$("#TB_window").css({display:"block"}); //for safari using css instead of show
|
||
};
|
||
|
||
imgPreloader.src = url;
|
||
}else{//code to show html
|
||
var params = tb_parseUrl(url);
|
||
var dims = get_dimensions();
|
||
TB_WIDTH = (params['width']*1) + 30 || dims.width*.6;//default to 60% of window width
|
||
TB_HEIGHT = (params['height']*1) + 40 || dims.height*.85;//default to 85% of window height
|
||
ajaxContentW = TB_WIDTH - 30;
|
||
ajaxContentH = TB_HEIGHT - 45;
|
||
|
||
if(url.indexOf('TB_iframe') != -1){// either iframe or ajax window
|
||
urlNoQuery = url.split('TB_');
|
||
$("#TB_iframeContent").remove();
|
||
if(params['modal'] != "true"){//iframe no modal
|
||
$("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton' title='Close'>X</a></div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW + 29)+"px;height:"+(ajaxContentH + 17)+"px;' > </iframe>");
|
||
}else{//iframe modal
|
||
$("#TB_overlay").unbind();
|
||
$("#TB_window").append("<iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW + 29)+"px;height:"+(ajaxContentH + 17)+"px;'> </iframe>");
|
||
}
|
||
}else{// not an iframe, ajax
|
||
if($("#TB_window").css("display") != "block"){
|
||
if(params['modal'] != "true"){//ajax no modal
|
||
$("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton'>X</a></div></div><div id='TB_ajaxContent' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px'></div>");
|
||
}else{//ajax modal
|
||
$("#TB_overlay").unbind();
|
||
$("#TB_window").append("<div id='TB_ajaxContent' class='TB_modal' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px;'></div>");
|
||
}
|
||
}else{//this means the window is already up, we are just loading new content via ajax
|
||
$("#TB_ajaxContent")[0].style.width = ajaxContentW +"px";
|
||
$("#TB_ajaxContent")[0].style.height = ajaxContentH +"px";
|
||
$("#TB_ajaxContent")[0].scrollTop = 0;
|
||
$("#TB_ajaxWindowTitle").html(caption);
|
||
}
|
||
}
|
||
|
||
$("#TB_closeWindowButton").click(tb_remove);
|
||
|
||
if(url.indexOf('TB_inline') != -1){
|
||
$("#TB_ajaxContent").append($('#' + params['inlineId']).children());
|
||
$("#TB_window").unload(function () {
|
||
$('#' + params['inlineId']).append( $("#TB_ajaxContent").children() ); // move elements back when you're finished
|
||
});
|
||
tb_position();
|
||
$("#TB_load").remove();
|
||
$("#TB_window").css({display:"block"});
|
||
}else if(url.indexOf('TB_iframe') != -1){
|
||
tb_position();
|
||
if($.browser.safari){//safari needs help because it will not fire iframe onload
|
||
$("#TB_load").remove();
|
||
$("#TB_window").css({display:"block"});
|
||
}
|
||
}else{
|
||
$("#TB_ajaxContent").load(url += "/random:" + (new Date().getTime()),function(){//to do a post change this load method
|
||
tb_position();
|
||
$("#TB_load").remove();
|
||
tb_init("#TB_ajaxContent a.thickbox");
|
||
$("#TB_window").css({display:"block"});
|
||
});
|
||
}
|
||
|
||
}
|
||
|
||
if(!params['modal']){
|
||
document.onkeyup = function(e){
|
||
if (e == null) { // ie
|
||
keycode = event.keyCode;
|
||
} else { // mozilla
|
||
keycode = e.which;
|
||
}
|
||
if(keycode == 27){ // close
|
||
tb_remove();
|
||
}
|
||
};
|
||
}
|
||
|
||
} catch(e) {
|
||
//nothing here
|
||
}
|
||
}
|
||
|
||
//helper functions below
|
||
function tb_showIframe(){
|
||
$("#TB_load").remove();
|
||
$("#TB_window").css({display:"block"});
|
||
}
|
||
|
||
function tb_remove() {
|
||
$("#TB_imageOff").unbind("click");
|
||
$("#TB_closeWindowButton").unbind("click");
|
||
$("#TB_window").fadeOut("fast",function(){$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});
|
||
$("#TB_load").remove();
|
||
if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
|
||
$("body","html").css({height: "auto", width: "auto"});
|
||
$("html").css("overflow","");
|
||
}
|
||
document.onkeydown = "";
|
||
document.onkeyup = "";
|
||
return false;
|
||
}
|
||
|
||
function tb_position() {
|
||
$("#TB_window").css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
|
||
if ( !(jQuery.browser.msie && jQuery.browser.version < 7)) { // take away IE6
|
||
$("#TB_window").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
|
||
}
|
||
}
|
||
|
||
function tb_parseQuery ( query ) {
|
||
var Params = {};
|
||
if ( ! query ) {return Params;}// return empty object
|
||
var Pairs = query.split(/[;&]/);
|
||
for ( var i = 0; i < Pairs.length; i++ ) {
|
||
var KeyVal = Pairs[i].split('=');
|
||
if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
|
||
var key = unescape( KeyVal[0] );
|
||
var val = unescape( KeyVal[1] );
|
||
val = val.replace(/\+/g, ' ');
|
||
Params[key] = val;
|
||
}
|
||
return Params;
|
||
}
|
||
|
||
function tb_parseUrl( url ) {
|
||
var Params = {}
|
||
if( !url) {return Params;}
|
||
var Pairs = url.match(/[a-z 0-9~%.:_\-]+:[a-z 0-9~%.:_\-]+/ig);
|
||
if(Pairs==null){return Params;}
|
||
for ( var i = 0; i < Pairs.length; i++ ) {
|
||
var KeyVal = Pairs[i].split(':');
|
||
if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
|
||
var key = unescape( KeyVal[0] );
|
||
var val = unescape( KeyVal[1] );
|
||
val = val.replace(/\+/g, ' ');
|
||
Params[key] = val;
|
||
}
|
||
return Params;
|
||
|
||
}
|
||
|
||
function tb_getPageSize(){
|
||
var de = document.documentElement;
|
||
var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
|
||
var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
|
||
arrayPageSize = [w,h];
|
||
return arrayPageSize;
|
||
}
|
||
|
||
function tb_detectMacXFF() {
|
||
var userAgent = navigator.userAgent.toLowerCase();
|
||
if (userAgent.indexOf('mac') != -1 && userAgent.indexOf('firefox')!=-1) {
|
||
return true;
|
||
}
|
||
}
|
||
|
||
|