code
stringlengths
24
2.07M
docstring
stringlengths
25
85.3k
func_name
stringlengths
1
92
language
stringclasses
1 value
repo
stringlengths
5
64
path
stringlengths
4
172
url
stringlengths
44
218
license
stringclasses
7 values
function createOptions( options ) { var object = optionsCache[ options ] = {}; jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { object[ flag ] = true; }); return object; }
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
createOptions
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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 && ...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
fire
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
updateFunc = function( i, contexts, values ) { return function( value ) { contexts[ i ] = this; values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; if ( values === progressValues ) { deferred.notifyWith( contexts, values ); } else if ( !(--remaining) ) { deferred.r...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
updateFunc
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function detach() { if ( document.addEventListener ) { document.removeEventListener( "DOMContentLoaded", completed, false ); window.removeEventListener( "load", completed, false ); } else { document.detachEvent( "onreadystatechange", completed ); window.detachEvent( "onload", completed ); } }
Clean-up method for dom ready events
detach
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function completed() { // readyState === "complete" is good enough for us to call the dom ready in oldIE if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { detach(); jQuery.ready(); } }
The ready event handler and self cleanup method
completed
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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 === "...
Determines whether an object can have data
dataAttr
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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; }
Determines whether an object can have data
isEmptyDataObject
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function internalData( elem, name, data, pvt /* Internal Use Only */ ) { if ( !jQuery.acceptData( elem ) ) { return; } var ret, thisCache, internalKey = jQuery.expando, // We have to handle DOM nodes and JS objects differently because IE6-7 // can't GC object references properly across the DOM-JS boundary ...
Determines whether an object can have data
internalData
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function internalRemoveData( elem, name, pvt ) { if ( !jQuery.acceptData( elem ) ) { return; } var thisCache, i, 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 e...
Determines whether an object can have data
internalRemoveData
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
next = function() { jQuery.dequeue( elem, type ); }
Determines whether an object can have data
next
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }
Determines whether an object can have data
resolve
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
isHidden = function( elem, el ) { // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); }
Determines whether an object can have data
isHidden
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function returnTrue() { return true; }
Determines whether an object can have data
returnTrue
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function returnFalse() { return false; }
Determines whether an object can have data
returnFalse
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function safeActiveElement() { try { return document.activeElement; } catch ( err ) { } }
Determines whether an object can have data
safeActiveElement
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); }
Determines whether an object can have data
handler
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function createSafeFragment( document ) { var list = nodeNames.split( "|" ), safeFrag = document.createDocumentFragment(); if ( safeFrag.createElement ) { while ( list.length ) { safeFrag.createElement( list.pop() ); } } return safeFrag; }
Determines whether an object can have data
createSafeFragment
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function getAll( context, tag ) { var elems, elem, i = 0, found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || "*" ) : typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || "*" ) : undefined; if ( !found ) { for ( found = [], el...
Determines whether an object can have data
getAll
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function fixDefaultChecked( elem ) { if ( rcheckableType.test( elem.type ) ) { elem.defaultChecked = elem.checked; } }
Determines whether an object can have data
fixDefaultChecked
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function manipulationTarget( elem, content ) { return jQuery.nodeName( elem, "table" ) && jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? elem.getElementsByTagName("tbody")[0] || elem.appendChild( elem.ownerDocument.createElement("tbody") ) : elem; }
Determines whether an object can have data
manipulationTarget
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function disableScript( elem ) { elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; return elem; }
Determines whether an object can have data
disableScript
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function restoreScript( elem ) { var match = rscriptTypeMasked.exec( elem.type ); if ( match ) { elem.type = match[1]; } else { elem.removeAttribute("type"); } return elem; }
Determines whether an object can have data
restoreScript
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function setGlobalEval( elems, refElements ) { var elem, i = 0; for ( ; (elem = elems[i]) != null; i++ ) { jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); } }
Determines whether an object can have data
setGlobalEval
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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 ...
Determines whether an object can have data
cloneCopyEvent
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function fixCloneNodeIssues( src, dest ) { var nodeName, e, data; // We do not need to do anything for non-Elements if ( dest.nodeType !== 1 ) { return; } nodeName = dest.nodeName.toLowerCase(); // IE6-8 copies events bound via attachEvent when using cloneNode. if ( !support.noCloneEvent && dest[ jQuery.exp...
Determines whether an object can have data
fixCloneNodeIssues
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function actualDisplay( name, doc ) { var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), // getDefaultComputedStyle might be reliably used only on attached element display = window.getDefaultComputedStyle ? // Use of this method is a temporary fix (more like optmization) until something bett...
Retrieve the actual display of a element @param {String} name nodeName of the element @param {Object} doc Document object
actualDisplay
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function defaultDisplay( nodeName ) { var doc = document, display = elemdisplay[ nodeName ]; if ( !display ) { display = actualDisplay( nodeName, doc ); // If the simple way fails, read from inside an iframe if ( display === "none" || !display ) { // Use the already-created iframe if possible iframe ...
Try to determine the default display value of an element @param {String} nodeName
defaultDisplay
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function addGetHookIf( conditionFn, hookFn ) { // Define the hook, we'll check on the first run if it's really needed. return { get: function() { var condition = conditionFn(); if ( condition == null ) { // The test was not ready at this point; screw the hook this time // but check again when needed ...
Try to determine the default display value of an element @param {String} nodeName
addGetHookIf
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function computeStyleTests() { var container, div, body = document.getElementsByTagName( "body" )[ 0 ]; if ( !body ) { // Test fired too early or in an unsupported environment, exit. return; } container = document.createElement( "div" ); div = document.createElement( "div" ); container.style.cssT...
Try to determine the default display value of an element @param {String} nodeName
computeStyleTests
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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...
Try to determine the default display value of an element @param {String} nodeName
vendorPropName
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function showHide( elements, show ) { var display, elem, hidden, values = [], index = 0, length = elements.length; for ( ; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } values[ index ] = jQuery._data( elem, "olddisplay" ); display = elem.style.display; i...
Try to determine the default display value of an element @param {String} nodeName
showHide
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function setPositiveNumber( elem, value, subtract ) { var matches = rnumsplit.exec( value ); return matches ? // Guard against undefined "subtract", e.g., when used as in cssHooks Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : value; }
Try to determine the default display value of an element @param {String} nodeName
setPositiveNumber
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { 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 ( ; ...
Try to determine the default display value of an element @param {String} nodeName
augmentWidthOrHeight
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function getWidthOrHeight( elem, name, extra ) { // Start with offset property, which is equivalent to the border-box value var valueIsBorderBox = true, val = name === "width" ? elem.offsetWidth : elem.offsetHeight, styles = getStyles( elem ), isBorderBox = support.boxSizing() && jQuery.css( elem, "boxSizing",...
Try to determine the default display value of an element @param {String} nodeName
getWidthOrHeight
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function Tween( elem, options, prop, end, easing ) { return new Tween.prototype.init( elem, options, prop, end, easing ); }
Try to determine the default display value of an element @param {String} nodeName
Tween
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function createFxNow() { setTimeout(function() { fxNow = undefined; }); return ( fxNow = jQuery.now() ); }
Try to determine the default display value of an element @param {String} nodeName
createFxNow
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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 ) { whic...
Try to determine the default display value of an element @param {String} nodeName
genFx
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function createTween( value, prop, animation ) { var tween, collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), index = 0, length = collection.length; for ( ; index < length; index++ ) { if ( (tween = collection[ index ].call( animation, prop, value )) ) { // we're done with this property ...
Try to determine the default display value of an element @param {String} nodeName
createTween
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function defaultPrefilter( elem, props, opts ) { /* jshint validthis: true */ var prop, value, toggle, tween, hooks, oldfire, display, dDisplay, anim = this, orig = {}, style = elem.style, hidden = elem.nodeType && isHidden( elem ), dataShow = jQuery._data( elem, "fxshow" ); // handle queue: false promise...
Try to determine the default display value of an element @param {String} nodeName
defaultPrefilter
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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 ];...
Try to determine the default display value of an element @param {String} nodeName
propFilter
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function Animation( elem, properties, options ) { var result, stopped, index = 0, length = animationPrefilters.length, deferred = jQuery.Deferred().always( function() { // don't match elem in the :animated selector delete tick.elem; }), tick = function() { if ( stopped ) { return false; } ...
Try to determine the default display value of an element @param {String} nodeName
Animation
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
tick = function() { if ( stopped ) { return false; } 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, ...
Try to determine the default display value of an element @param {String} nodeName
tick
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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, or finishing resolves immediately if ( empty || jQuery._data( this, "finish" ) ) { anim.stop( true ); } }
Try to determine the default display value of an element @param {String} nodeName
doAnimation
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
stopQueue = function( hooks ) { var stop = hooks.stop; delete hooks.stop; stop( gotoEnd ); }
Try to determine the default display value of an element @param {String} nodeName
stopQueue
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function addToPrefiltersOrTransports( structure ) { // dataTypeExpression is optional and defaults to "*" return function( dataTypeExpression, func ) { if ( typeof dataTypeExpression !== "string" ) { func = dataTypeExpression; dataTypeExpression = "*"; } var dataType, i = 0, dataTypes = dataTypeE...
Try to determine the default display value of an element @param {String} nodeName
addToPrefiltersOrTransports
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { var inspected = {}, seekingTransport = ( structure === transports ); function inspect( dataType ) { var selected; inspected[ dataType ] = true; jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {...
Try to determine the default display value of an element @param {String} nodeName
inspectPrefiltersOrTransports
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function inspect( dataType ) { var selected; inspected[ dataType ] = true; jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !insp...
Try to determine the default display value of an element @param {String} nodeName
inspect
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function ajaxExtend( target, src ) { var deep, key, 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 ); } retur...
Try to determine the default display value of an element @param {String} nodeName
ajaxExtend
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function ajaxHandleResponses( s, jqXHR, responses ) { var firstDataType, ct, finalDataType, type, contents = s.contents, dataTypes = s.dataTypes; // Remove auto dataType and get content-type in the process while ( dataTypes[ 0 ] === "*" ) { dataTypes.shift(); if ( ct === undefined ) { ct = s.mimeType || ...
Try to determine the default display value of an element @param {String} nodeName
ajaxHandleResponses
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function ajaxConvert( s, response, jqXHR, isSuccess ) { var conv2, current, conv, tmp, prev, converters = {}, // Work with a copy of dataTypes in case we need to modify it for conversion dataTypes = s.dataTypes.slice(); // Create converters map with lowercased keys if ( dataTypes[ 1 ] ) { for ( conv in s.co...
Try to determine the default display value of an element @param {String} nodeName
ajaxConvert
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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 ) { cle...
Try to determine the default display value of an element @param {String} nodeName
done
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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 { // Item is non-scalar ...
Try to determine the default display value of an element @param {String} nodeName
buildParams
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
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 ); }
Try to determine the default display value of an element @param {String} nodeName
add
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function createStandardXHR() { try { return new window.XMLHttpRequest(); } catch( e ) {} }
Try to determine the default display value of an element @param {String} nodeName
createStandardXHR
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function createActiveXHR() { try { return new window.ActiveXObject( "Microsoft.XMLHTTP" ); } catch( e ) {} }
Try to determine the default display value of an element @param {String} nodeName
createActiveXHR
javascript
documentcloud/visualsearch
build/dependencies.js
https://github.com/documentcloud/visualsearch/blob/master/build/dependencies.js
MIT
function markFunction( fn ) { fn[ expando ] = true; return fn; }
Mark a function for special use by Sizzle @param {Function} fn The function to mark
markFunction
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function assert( fn ) { var div = document.createElement("div"); try { return !!fn( div ); } catch (e) { return false; } finally { // Remove from its parent by default if ( div.parentNode ) { div.parentNode.removeChild( div ); } // release memory in IE div = null; } }
Support testing using an element @param {Function} fn Passed the created div and expects a boolean result
assert
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function addHandle( attrs, handler ) { var arr = attrs.split("|"), i = attrs.length; while ( i-- ) { Expr.attrHandle[ arr[i] ] = handler; } }
Adds the same handler for all of the specified attrs @param {String} attrs Pipe-separated list of attributes @param {Function} handler The method that will be applied
addHandle
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function siblingCheck( a, b ) { var cur = b && a, diff = cur && a.nodeType === 1 && b.nodeType === 1 && ( ~b.sourceIndex || MAX_NEGATIVE ) - ( ~a.sourceIndex || MAX_NEGATIVE ); // Use IE sourceIndex if available on both nodes if ( diff ) { return diff; } // Check if b follows a if ( cur ) { while ( ...
Checks document order of two siblings @param {Element} a @param {Element} b @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
siblingCheck
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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 input types @param {String} type
createInputPseudo
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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 buttons @param {String} type
createButtonPseudo
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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-- ) {...
Returns a function to use in pseudos for positionals @param {Function} fn
createPositionalPseudo
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function testContext( context ) { return context && typeof context.getElementsByTagName !== strundefined && context; }
Checks a node for validity as a Sizzle context @param {Element|Object=} context @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
testContext
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function tokenize( selector, parseOnly ) { var matched, match, tokens, type, soFar, groups, preFilters, cached = tokenCache[ selector + " " ]; if ( cached ) { return parseOnly ? 0 : cached.slice( 0 ); } soFar = selector; groups = []; preFilters = Expr.preFilter; while ( soFar ) { // Comma and first r...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
tokenize
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function toSelector( tokens ) { var i = 0, len = tokens.length, selector = ""; for ( ; i < len; i++ ) { selector += tokens[i].value; } return selector; }
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
toSelector
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function addCombinator( matcher, combinator, base ) { var dir = combinator.dir, checkNonElements = base && dir === "parentNode", doneName = done++; return combinator.first ? // Check against closest ancestor/preceding element function( elem, context, xml ) { while ( (elem = elem[ dir ]) ) { if ( elem....
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
addCombinator
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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]; }
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
elementMatcher
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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 ) { m...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
condense
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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( s...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
setMatcher
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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 c...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
matcherFromTokens
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function matcherFromGroupMatchers( elementMatchers, setMatchers ) { var bySet = setMatchers.length > 0, byElement = elementMatchers.length > 0, superMatcher = function( seed, context, xml, results, outermost ) { var elem, j, matcher, matchedCount = 0, i = "0", unmatched = seed && [], setMatched ...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
matcherFromGroupMatchers
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
superMatcher = function( seed, context, xml, results, outermost ) { var elem, j, matcher, matchedCount = 0, i = "0", unmatched = seed && [], setMatched = [], contextBackup = outermostContext, // We must always have either seed elements or outermost context elems = seed || byElement && Exp...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
superMatcher
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function multipleContexts( selector, contexts, results ) { var i = 0, len = contexts.length; for ( ; i < len; i++ ) { Sizzle( selector, contexts[i], results ); } return results; }
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
multipleContexts
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function select( selector, context, results, seed ) { var i, tokens, token, type, find, match = tokenize( selector ); 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]...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
select
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function winnow( elements, qualifier, not ) { if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep( elements, function( elem, i ) { /* jshint -W018 */ return !!qualifier.call( elem, i, elem ) !== not; }); } if ( qualifier.nodeType ) { return jQuery.grep( elements, function( elem ) { return ( e...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
winnow
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function sibling( cur, dir ) { do { cur = cur[ dir ]; } while ( cur && cur.nodeType !== 1 ); return cur; }
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
sibling
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function createOptions( options ) { var object = optionsCache[ options ] = {}; jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { object[ flag ] = true; }); return object; }
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
createOptions
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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 && ...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
fire
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
updateFunc = function( i, contexts, values ) { return function( value ) { contexts[ i ] = this; values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; if ( values === progressValues ) { deferred.notifyWith( contexts, values ); } else if ( !(--remaining) ) { deferred.r...
Utility function for retrieving the text value of an array of DOM nodes @param {Array|Element} elem
updateFunc
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function detach() { if ( document.addEventListener ) { document.removeEventListener( "DOMContentLoaded", completed, false ); window.removeEventListener( "load", completed, false ); } else { document.detachEvent( "onreadystatechange", completed ); window.detachEvent( "onload", completed ); } }
Clean-up method for dom ready events
detach
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function completed() { // readyState === "complete" is good enough for us to call the dom ready in oldIE if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { detach(); jQuery.ready(); } }
The ready event handler and self cleanup method
completed
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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 === "...
Determines whether an object can have data
dataAttr
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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; }
Determines whether an object can have data
isEmptyDataObject
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function internalData( elem, name, data, pvt /* Internal Use Only */ ) { if ( !jQuery.acceptData( elem ) ) { return; } var ret, thisCache, internalKey = jQuery.expando, // We have to handle DOM nodes and JS objects differently because IE6-7 // can't GC object references properly across the DOM-JS boundary ...
Determines whether an object can have data
internalData
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function internalRemoveData( elem, name, pvt ) { if ( !jQuery.acceptData( elem ) ) { return; } var thisCache, i, 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 e...
Determines whether an object can have data
internalRemoveData
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
next = function() { jQuery.dequeue( elem, type ); }
Determines whether an object can have data
next
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }
Determines whether an object can have data
resolve
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
isHidden = function( elem, el ) { // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); }
Determines whether an object can have data
isHidden
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function returnTrue() { return true; }
Determines whether an object can have data
returnTrue
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function returnFalse() { return false; }
Determines whether an object can have data
returnFalse
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function safeActiveElement() { try { return document.activeElement; } catch ( err ) { } }
Determines whether an object can have data
safeActiveElement
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); }
Determines whether an object can have data
handler
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function createSafeFragment( document ) { var list = nodeNames.split( "|" ), safeFrag = document.createDocumentFragment(); if ( safeFrag.createElement ) { while ( list.length ) { safeFrag.createElement( list.pop() ); } } return safeFrag; }
Determines whether an object can have data
createSafeFragment
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function getAll( context, tag ) { var elems, elem, i = 0, found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || "*" ) : typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || "*" ) : undefined; if ( !found ) { for ( found = [], el...
Determines whether an object can have data
getAll
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function fixDefaultChecked( elem ) { if ( rcheckableType.test( elem.type ) ) { elem.defaultChecked = elem.checked; } }
Determines whether an object can have data
fixDefaultChecked
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function manipulationTarget( elem, content ) { return jQuery.nodeName( elem, "table" ) && jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? elem.getElementsByTagName("tbody")[0] || elem.appendChild( elem.ownerDocument.createElement("tbody") ) : elem; }
Determines whether an object can have data
manipulationTarget
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function disableScript( elem ) { elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; return elem; }
Determines whether an object can have data
disableScript
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function restoreScript( elem ) { var match = rscriptTypeMasked.exec( elem.type ); if ( match ) { elem.type = match[1]; } else { elem.removeAttribute("type"); } return elem; }
Determines whether an object can have data
restoreScript
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
function setGlobalEval( elems, refElements ) { var elem, i = 0; for ( ; (elem = elems[i]) != null; i++ ) { jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); } }
Determines whether an object can have data
setGlobalEval
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT
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 ...
Determines whether an object can have data
cloneCopyEvent
javascript
documentcloud/visualsearch
vendor/jquery-1.11.0.js
https://github.com/documentcloud/visualsearch/blob/master/vendor/jquery-1.11.0.js
MIT