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 objectToString(o) {
return Object.prototype.toString.call(o);
} | Echos the value of a value. Trys to print the value out
in the best way possible given the different types.
@param {Object} obj The object to print out.
@param {Boolean} showHidden Flag that shows hidden (not enumerable)
properties of objects.
@param {Number} depth Depth in which to descend in object. Default is 2.... | objectToString | javascript | dobtco/formbuilder | test/vendor/js/chai.js | https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
// A counter to specify which element is currently being matched
var matcherCachedRuns = 0,
bySet = setMatchers.length > 0,
byElement = elementMatchers.length > 0,
superMatcher = function( seed, context, xml, results, expandContext ) {
var e... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | matcherFromGroupMatchers | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
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
... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | superMatcher | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function createOptions( options ) {
var object = optionsCache[ options ] = {};
jQuery.each( options.match( core_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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
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 ) ) {
defer... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | updateFunc | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function Data() {
// Support: Android < 4,
// Old WebKit does not have Object.preventExtensions/freeze method,
// return new empty object instead with no [[set]] accessor
Object.defineProperty( this.cache = {}, 0, {
get: function() {
return {};
}
});
this.expando = jQuery.expando + Math.random();
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | Data | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function dataAttr( elem, key, data ) {
var name;
// If nothing was found internally, try to fetch any
// data from the HTML5 data-* attribute
if ( data === undefined && elem.nodeType === 1 ) {
name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
data = elem.getAttribute( name );
if ( typeof data... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | dataAttr | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
next = function() {
jQuery.dequeue( elem, type );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | next | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
resolve = function() {
if ( !( --count ) ) {
defer.resolveWith( elements, [ elements ] );
}
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | resolve | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function returnTrue() {
return true;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | returnTrue | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function returnFalse() {
return false;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | returnFalse | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function safeActiveElement() {
try {
return document.activeElement;
} catch ( err ) { }
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | safeActiveElement | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
handler = function( event ) {
jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | handler | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function sibling( cur, dir ) {
while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {}
return cur;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | sibling | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function manipulationTarget( elem, content ) {
return jQuery.nodeName( elem, "table" ) &&
jQuery.nodeName( content.nodeType === 1 ? content : content.firstChild, "tr" ) ?
elem.getElementsByTagName("tbody")[0] ||
elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
elem;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | manipulationTarget | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function disableScript( elem ) {
elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type;
return elem;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | disableScript | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function restoreScript( elem ) {
var match = rscriptTypeMasked.exec( elem.type );
if ( match ) {
elem.type = match[ 1 ];
} else {
elem.removeAttribute("type");
}
return elem;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | restoreScript | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function setGlobalEval( elems, refElements ) {
var l = elems.length,
i = 0;
for ( ; i < l; i++ ) {
data_priv.set(
elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" )
);
}
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | setGlobalEval | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function cloneCopyEvent( src, dest ) {
var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
if ( dest.nodeType !== 1 ) {
return;
}
// 1. Copy private data: events, handlers, etc.
if ( data_priv.hasData( src ) ) {
pdataOld = data_priv.access( src );
pdataCur = data_priv.set( dest, pdataOld );
e... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | cloneCopyEvent | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function getAll( context, tag ) {
var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) :
context.querySelectorAll ? context.querySelectorAll( tag || "*" ) :
[];
return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
jQuery.merge( [ context ], ret ) :
ret;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | getAll | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function fixInput( src, dest ) {
var nodeName = dest.nodeName.toLowerCase();
// Fails to persist the checked state of a cloned checkbox or radio button.
if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) {
dest.checked = src.checked;
// Fails to return the selected option to the default... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | fixInput | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | vendorPropName | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function isHidden( 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 );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | isHidden | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function getStyles( elem ) {
return window.getComputedStyle( elem, null );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | getStyles | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 ] = data_priv.get( elem, "olddisplay" );
display = elem.style.display;
... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | showHide | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | setPositiveNumber | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 ( ; ... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | augmentWidthOrHeight | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 = jQuery.support.boxSizing && jQuery.css( elem, "boxSiz... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | getWidthOrHeight | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function css_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
ifra... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | css_defaultDisplay | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function actualDisplay( name, doc ) {
var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
display = jQuery.css( elem[0], "display" );
elem.remove();
return display;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | actualDisplay | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | add | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 ... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | buildParams | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | addToPrefiltersOrTransports | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 ) {... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | inspectPrefiltersOrTransports | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 && !inspe... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | inspect | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
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 );
}
retur... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | ajaxExtend | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | done | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function ajaxHandleResponses( s, jqXHR, responses ) {
var ct, type, finalDataType, firstDataType,
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 || ... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | ajaxHandleResponses | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | ajaxConvert | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function createFxNow() {
setTimeout(function() {
fxNow = undefined;
});
return ( fxNow = jQuery.now() );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | createFxNow | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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
... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | createTween | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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;
}
... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | Animation | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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,
... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | tick | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 ];... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | propFilter | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function defaultPrefilter( elem, props, opts ) {
/* jshint validthis: true */
var prop, value, toggle, tween, hooks, oldfire,
anim = this,
orig = {},
style = elem.style,
hidden = elem.nodeType && isHidden( elem ),
dataShow = data_priv.get( elem, "fxshow" );
// handle queue: false promises
if ( !opts.queu... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | defaultPrefilter | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function Tween( elem, options, prop, end, easing ) {
return new Tween.prototype.init( elem, options, prop, end, easing );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | Tween | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 || data_priv.get( this, "finish" ) ) {
anim.stop( true );
}
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | doAnimation | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
stopQueue = function( hooks ) {
var stop = hooks.stop;
delete hooks.stop;
stop( gotoEnd );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | stopQueue | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.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 ) {
which ... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | genFx | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function getWindow( elem ) {
return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | getWindow | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function focusable( element, isTabIndexNotNaN ) {
var map, mapName, img,
nodeName = element.nodeName.toLowerCase();
if ( "area" === nodeName ) {
map = element.parentNode;
mapName = map.name;
if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
return false;
}
img = $( "img[usemap=... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | focusable | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function visible( element ) {
return $.expr.filters.visible( element ) &&
!$( element ).parents().addBack().filter(function() {
return $.css( this, "visibility" ) === "hidden";
}).length;
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | visible | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function reduce( elem, size, border, margin ) {
$.each( side, function() {
size -= parseFloat( $.css( elem, "padding" + this ) ) || 0;
if ( border ) {
size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0;
}
if ( margin ) {
size -= parseFloat( $.css( elem, "margin" + this ) ) ... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | reduce | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
_super = function() {
return base.prototype[ prop ].apply( this, arguments );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | _super | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
_superApply = function( args ) {
return base.prototype[ prop ].apply( this, args );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | _superApply | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function handlerProxy() {
// allow widgets to customize the disabled handling
// - disabled as an array instead of boolean
// - disabled class as method for disabling individual parts
if ( !suppressDisabledCheck &&
( instance.options.disabled === true ||
$( this ).hasClass( "ui-state-disabl... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | handlerProxy | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function handlerProxy() {
return ( typeof handler === "string" ? instance[ handler ] : handler )
.apply( instance, arguments );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | handlerProxy | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function isOverAxis( x, reference, size ) {
return ( x > reference ) && ( x < ( reference + size ) );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | isOverAxis | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function isOverAxis( x, reference, size ) {
return ( x > reference ) && ( x < ( reference + size ) );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | isOverAxis | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function isFloating(item) {
return (/left|right/).test(item.css("float")) || (/inline|table-cell/).test(item.css("display"));
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | isFloating | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function addItems() {
items.push( this );
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | addItems | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function delayEvent( type, instance, container ) {
return function( event ) {
container._trigger( type, event, instance._uiHash( instance ) );
};
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | delayEvent | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function Binding(view, el, type, key, keypath, options) {
var identifier, regexp, value, _ref;
this.view = view;
this.el = el;
this.type = type;
this.key = key;
this.keypath = keypath;
this.options = options != null ? options : {};
this.update = __bind(this.update, this);... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | Binding | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function ComponentBinding(view, el, type) {
var attribute, _i, _len, _ref, _ref1;
this.view = view;
this.el = el;
this.type = type;
this.unbind = __bind(this.unbind, this);
this.bind = __bind(this.bind, this);
this.update = __bind(this.update, this);
this.locals = __bind(... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | ComponentBinding | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function TextBinding(view, el, type, key, keypath, options) {
this.view = view;
this.el = el;
this.type = type;
this.key = key;
this.keypath = keypath;
this.options = options != null ? options : {};
this.sync = __bind(this.sync, this);
this.formatters = this.options.forma... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | TextBinding | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function View(els, models, options) {
var k, option, v, _base, _i, _len, _ref, _ref1, _ref2;
this.els = els;
this.models = models;
this.options = options != null ? options : {};
this.update = __bind(this.update, this);
this.publish = __bind(this.publish, this);
this.sync = __bi... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | View | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
eventsApi = function(obj, action, name, rest) {
if (!name) return true;
// Handle event maps.
if (typeof name === 'object') {
for (var key in name) {
obj[action].apply(obj, [key, name[key]].concat(rest));
}
return false;
}
// Handle space separated event names.
if (ev... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | eventsApi | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
triggerEvents = function(events, args) {
var ev, i = -1, l = events.length, a1 = args[0], a2 = args[1], a3 = args[2];
switch (args.length) {
case 0: while (++i < l) (ev = events[i]).callback.call(ev.ctx); return;
case 1: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1); return;
case ... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | triggerEvents | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
destroy = function() {
model.trigger('destroy', model, model.collection, options);
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | destroy | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
extend = function(protoProps, staticProps) {
var parent = this;
var child;
// The constructor function for the new subclass is either defined by you
// (the "constructor" property in your `extend` definition), or defaulted
// by us to simply call the parent's constructor.
if (protoProps && _.ha... | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | extend | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
urlError = function() {
throw new Error('A "url" property or function must be specified');
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | urlError | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
wrapError = function(model, options) {
var error = options.error;
options.error = function(resp) {
if (error) error(model, resp, options);
model.trigger('error', model, resp, options);
};
} | Utility function for retrieving the text value of an array of DOM nodes
@param {Array|Element} elem | wrapError | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function objToPaths(obj) {
var ret = {},
separator = DeepModel.keyPathSeparator;
for (var key in obj) {
var val = obj[key];
if (val && val.constructor === Object && !_.isEmpty(val)) {
//Recursion for embedded objects
var obj2 = objToP... | Takes a nested object and returns a shallow object keyed with the path names
e.g. { "level1.level2": "value" }
@param {Object} Nested object e.g. { level1: { level2: 'value' } }
@return {Object} Shallow object with path names e.g. { 'level1.level2': 'value' } | objToPaths | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function getNested(obj, path, return_exists) {
var separator = DeepModel.keyPathSeparator;
var fields = path.split(separator);
var result = obj;
return_exists || (return_exists === false);
for (var i = 0, n = fields.length; i < n; i++) {
if (return_exists && !_.has(r... | @param {Object} Object to fetch attribute from
@param {String} Object path e.g. 'user.name'
@return {Mixed} | getNested | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function setNested(obj, path, val, options) {
options = options || {};
var separator = DeepModel.keyPathSeparator;
var fields = path.split(separator);
var result = obj;
for (var i = 0, n = fields.length; i < n && result !== undefined ; i++) {
var field = fields[i];
... | @param {Object} obj Object to fetch attribute from
@param {String} path Object path e.g. 'user.name'
@param {Object} [options] Options
@param {Boolean} [options.unset] Whether to delete the value
@param {Mixed} Value to set | setNested | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
function deleteNested(obj, path) {
setNested(obj, path, null, { unset: true });
} | @param {Object} obj Object to fetch attribute from
@param {String} path Object path e.g. 'user.name'
@param {Object} [options] Options
@param {Boolean} [options.unset] Whether to delete the value
@param {Mixed} Value to set | deleteNested | javascript | dobtco/formbuilder | vendor/js/vendor.js | https://github.com/dobtco/formbuilder/blob/master/vendor/js/vendor.js | MIT |
filterFn = function(fn) {
return fn.type === event;
} | mui delegate events
@param {type} event
@param {type} selector
@param {type} callback
@returns {undefined} | filterFn | javascript | dcloudio/mui | dist/js/mui.js | https://github.com/dcloudio/mui/blob/master/dist/js/mui.js | MIT |
function update(fn) {
return function(value) {
var classes = self.className.split(/\s+/),
index = classes.indexOf(value);
fn(classes, index, value);
self.className = classes.join(" ");
... | mui fixed classList
@param {type} document
@returns {undefined} | update | javascript | dcloudio/mui | dist/js/mui.js | https://github.com/dcloudio/mui/blob/master/dist/js/mui.js | MIT |
getDistance = function(p1, p2, props) {
if(!props) {
props = ['x', 'y'];
}
var x = p2[props[0]] - p1[props[0]];
var y = p2[props[1]] - p1[props[1]];
return sqrt((x * x) + (y * y));
} | angle
@param {type} p1
@param {type} p2
@returns {Number} | getDistance | javascript | dcloudio/mui | dist/js/mui.js | https://github.com/dcloudio/mui/blob/master/dist/js/mui.js | MIT |
getAngle = function(p1, p2, props) {
if(!props) {
props = ['x', 'y'];
}
var x = p2[props[0]] - p1[props[0]];
var y = p2[props[1]] - p1[props[1]];
return atan2(y, x) * 180 / Math.PI;
} | rotation
@param {Object} start
@param {Object} end | getAngle | javascript | dcloudio/mui | dist/js/mui.js | https://github.com/dcloudio/mui/blob/master/dist/js/mui.js | MIT |
getDirection = function(x, y) {
if(x === y) {
return '';
}
if(abs(x) >= abs(y)) {
return x > 0 ? 'left' : 'right';
}
return y > 0 ? 'up' : 'down';
} | detect gestures
@param {type} event
@param {type} touch
@returns {undefined} | getDirection | javascript | dcloudio/mui | dist/js/mui.js | https://github.com/dcloudio/mui/blob/master/dist/js/mui.js | MIT |
getRotation = function(start, end) {
var props = ['pageX', 'pageY'];
return getAngle(end[1], end[0], props) - getAngle(start[1], start[0], props);
} | detect gestures
@param {type} event
@param {type} touch
@returns {undefined} | getRotation | javascript | dcloudio/mui | dist/js/mui.js | https://github.com/dcloudio/mui/blob/master/dist/js/mui.js | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.