diff options
Diffstat (limited to 'bower_components/jquery/src/attributes')
| -rw-r--r-- | bower_components/jquery/src/attributes/attr.js | 143 | ||||
| -rw-r--r-- | bower_components/jquery/src/attributes/classes.js | 158 | ||||
| -rw-r--r-- | bower_components/jquery/src/attributes/prop.js | 96 | ||||
| -rw-r--r-- | bower_components/jquery/src/attributes/support.js | 35 | ||||
| -rw-r--r-- | bower_components/jquery/src/attributes/val.js | 163 | 
5 files changed, 595 insertions, 0 deletions
| diff --git a/bower_components/jquery/src/attributes/attr.js b/bower_components/jquery/src/attributes/attr.js new file mode 100644 index 0000000..8601cfe --- /dev/null +++ b/bower_components/jquery/src/attributes/attr.js @@ -0,0 +1,143 @@ +define([ +	"../core", +	"../var/rnotwhite", +	"../var/strundefined", +	"../core/access", +	"./support", +	"../selector" +], function( jQuery, rnotwhite, strundefined, access, support ) { + +var nodeHook, boolHook, +	attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend({ +	attr: function( name, value ) { +		return access( this, jQuery.attr, name, value, arguments.length > 1 ); +	}, + +	removeAttr: function( name ) { +		return this.each(function() { +			jQuery.removeAttr( this, name ); +		}); +	} +}); + +jQuery.extend({ +	attr: function( elem, name, value ) { +		var hooks, ret, +			nType = elem.nodeType; + +		// don't get/set attributes on text, comment and attribute nodes +		if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { +			return; +		} + +		// Fallback to prop when attributes are not supported +		if ( typeof elem.getAttribute === strundefined ) { +			return jQuery.prop( elem, name, value ); +		} + +		// All attributes are lowercase +		// Grab necessary hook if one is defined +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { +			name = name.toLowerCase(); +			hooks = jQuery.attrHooks[ name ] || +				( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); +		} + +		if ( value !== undefined ) { + +			if ( value === null ) { +				jQuery.removeAttr( elem, name ); + +			} else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { +				return ret; + +			} else { +				elem.setAttribute( name, value + "" ); +				return value; +			} + +		} else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { +			return ret; + +		} else { +			ret = jQuery.find.attr( elem, name ); + +			// Non-existent attributes return null, we normalize to undefined +			return ret == null ? +				undefined : +				ret; +		} +	}, + +	removeAttr: function( elem, value ) { +		var name, propName, +			i = 0, +			attrNames = value && value.match( rnotwhite ); + +		if ( attrNames && elem.nodeType === 1 ) { +			while ( (name = attrNames[i++]) ) { +				propName = jQuery.propFix[ name ] || name; + +				// Boolean attributes get special treatment (#10870) +				if ( jQuery.expr.match.bool.test( name ) ) { +					// Set corresponding property to false +					elem[ propName ] = false; +				} + +				elem.removeAttribute( name ); +			} +		} +	}, + +	attrHooks: { +		type: { +			set: function( elem, value ) { +				if ( !support.radioValue && value === "radio" && +					jQuery.nodeName( elem, "input" ) ) { +					// Setting the type on a radio button after the value resets the value in IE6-9 +					// Reset value to default in case type is set after value during creation +					var val = elem.value; +					elem.setAttribute( "type", value ); +					if ( val ) { +						elem.value = val; +					} +					return value; +				} +			} +		} +	} +}); + +// Hooks for boolean attributes +boolHook = { +	set: function( elem, value, name ) { +		if ( value === false ) { +			// Remove boolean attributes when set to false +			jQuery.removeAttr( elem, name ); +		} else { +			elem.setAttribute( name, name ); +		} +		return name; +	} +}; +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { +	var getter = attrHandle[ name ] || jQuery.find.attr; + +	attrHandle[ name ] = function( elem, name, isXML ) { +		var ret, handle; +		if ( !isXML ) { +			// Avoid an infinite loop by temporarily removing this function from the getter +			handle = attrHandle[ name ]; +			attrHandle[ name ] = ret; +			ret = getter( elem, name, isXML ) != null ? +				name.toLowerCase() : +				null; +			attrHandle[ name ] = handle; +		} +		return ret; +	}; +}); + +}); diff --git a/bower_components/jquery/src/attributes/classes.js b/bower_components/jquery/src/attributes/classes.js new file mode 100644 index 0000000..7d714b8 --- /dev/null +++ b/bower_components/jquery/src/attributes/classes.js @@ -0,0 +1,158 @@ +define([ +	"../core", +	"../var/rnotwhite", +	"../var/strundefined", +	"../data/var/data_priv", +	"../core/init" +], function( jQuery, rnotwhite, strundefined, data_priv ) { + +var rclass = /[\t\r\n\f]/g; + +jQuery.fn.extend({ +	addClass: function( value ) { +		var classes, elem, cur, clazz, j, finalValue, +			proceed = typeof value === "string" && value, +			i = 0, +			len = this.length; + +		if ( jQuery.isFunction( value ) ) { +			return this.each(function( j ) { +				jQuery( this ).addClass( value.call( this, j, this.className ) ); +			}); +		} + +		if ( proceed ) { +			// The disjunction here is for better compressibility (see removeClass) +			classes = ( value || "" ).match( rnotwhite ) || []; + +			for ( ; i < len; i++ ) { +				elem = this[ i ]; +				cur = elem.nodeType === 1 && ( elem.className ? +					( " " + elem.className + " " ).replace( rclass, " " ) : +					" " +				); + +				if ( cur ) { +					j = 0; +					while ( (clazz = classes[j++]) ) { +						if ( cur.indexOf( " " + clazz + " " ) < 0 ) { +							cur += clazz + " "; +						} +					} + +					// only assign if different to avoid unneeded rendering. +					finalValue = jQuery.trim( cur ); +					if ( elem.className !== finalValue ) { +						elem.className = finalValue; +					} +				} +			} +		} + +		return this; +	}, + +	removeClass: function( value ) { +		var classes, elem, cur, clazz, j, finalValue, +			proceed = arguments.length === 0 || typeof value === "string" && value, +			i = 0, +			len = this.length; + +		if ( jQuery.isFunction( value ) ) { +			return this.each(function( j ) { +				jQuery( this ).removeClass( value.call( this, j, this.className ) ); +			}); +		} +		if ( proceed ) { +			classes = ( value || "" ).match( rnotwhite ) || []; + +			for ( ; i < len; i++ ) { +				elem = this[ i ]; +				// This expression is here for better compressibility (see addClass) +				cur = elem.nodeType === 1 && ( elem.className ? +					( " " + elem.className + " " ).replace( rclass, " " ) : +					"" +				); + +				if ( cur ) { +					j = 0; +					while ( (clazz = classes[j++]) ) { +						// Remove *all* instances +						while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { +							cur = cur.replace( " " + clazz + " ", " " ); +						} +					} + +					// only assign if different to avoid unneeded rendering. +					finalValue = value ? jQuery.trim( cur ) : ""; +					if ( elem.className !== finalValue ) { +						elem.className = finalValue; +					} +				} +			} +		} + +		return this; +	}, + +	toggleClass: function( value, stateVal ) { +		var type = typeof value; + +		if ( typeof stateVal === "boolean" && type === "string" ) { +			return stateVal ? this.addClass( value ) : this.removeClass( value ); +		} + +		if ( jQuery.isFunction( value ) ) { +			return this.each(function( i ) { +				jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); +			}); +		} + +		return this.each(function() { +			if ( type === "string" ) { +				// toggle individual class names +				var className, +					i = 0, +					self = jQuery( this ), +					classNames = value.match( rnotwhite ) || []; + +				while ( (className = classNames[ i++ ]) ) { +					// check each className given, space separated list +					if ( self.hasClass( className ) ) { +						self.removeClass( className ); +					} else { +						self.addClass( className ); +					} +				} + +			// Toggle whole class name +			} else if ( type === strundefined || type === "boolean" ) { +				if ( this.className ) { +					// store className if set +					data_priv.set( this, "__className__", this.className ); +				} + +				// If the element has a class name or if we're passed "false", +				// then remove the whole classname (if there was one, the above saved it). +				// Otherwise bring back whatever was previously saved (if anything), +				// falling back to the empty string if nothing was stored. +				this.className = this.className || value === false ? "" : data_priv.get( this, "__className__" ) || ""; +			} +		}); +	}, + +	hasClass: function( selector ) { +		var className = " " + selector + " ", +			i = 0, +			l = this.length; +		for ( ; i < l; i++ ) { +			if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { +				return true; +			} +		} + +		return false; +	} +}); + +}); diff --git a/bower_components/jquery/src/attributes/prop.js b/bower_components/jquery/src/attributes/prop.js new file mode 100644 index 0000000..e2b95dc --- /dev/null +++ b/bower_components/jquery/src/attributes/prop.js @@ -0,0 +1,96 @@ +define([ +	"../core", +	"../core/access", +	"./support" +], function( jQuery, access, support ) { + +var rfocusable = /^(?:input|select|textarea|button)$/i; + +jQuery.fn.extend({ +	prop: function( name, value ) { +		return access( this, jQuery.prop, name, value, arguments.length > 1 ); +	}, + +	removeProp: function( name ) { +		return this.each(function() { +			delete this[ jQuery.propFix[ name ] || name ]; +		}); +	} +}); + +jQuery.extend({ +	propFix: { +		"for": "htmlFor", +		"class": "className" +	}, + +	prop: function( elem, name, value ) { +		var ret, hooks, notxml, +			nType = elem.nodeType; + +		// don't get/set properties on text, comment and attribute nodes +		if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { +			return; +		} + +		notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + +		if ( notxml ) { +			// Fix name and attach hooks +			name = jQuery.propFix[ name ] || name; +			hooks = jQuery.propHooks[ name ]; +		} + +		if ( value !== undefined ) { +			return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ? +				ret : +				( elem[ name ] = value ); + +		} else { +			return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ? +				ret : +				elem[ name ]; +		} +	}, + +	propHooks: { +		tabIndex: { +			get: function( elem ) { +				return elem.hasAttribute( "tabindex" ) || rfocusable.test( elem.nodeName ) || elem.href ? +					elem.tabIndex : +					-1; +			} +		} +	} +}); + +// Support: IE9+ +// Selectedness for an option in an optgroup can be inaccurate +if ( !support.optSelected ) { +	jQuery.propHooks.selected = { +		get: function( elem ) { +			var parent = elem.parentNode; +			if ( parent && parent.parentNode ) { +				parent.parentNode.selectedIndex; +			} +			return null; +		} +	}; +} + +jQuery.each([ +	"tabIndex", +	"readOnly", +	"maxLength", +	"cellSpacing", +	"cellPadding", +	"rowSpan", +	"colSpan", +	"useMap", +	"frameBorder", +	"contentEditable" +], function() { +	jQuery.propFix[ this.toLowerCase() ] = this; +}); + +}); diff --git a/bower_components/jquery/src/attributes/support.js b/bower_components/jquery/src/attributes/support.js new file mode 100644 index 0000000..376b54a --- /dev/null +++ b/bower_components/jquery/src/attributes/support.js @@ -0,0 +1,35 @@ +define([ +	"../var/support" +], function( support ) { + +(function() { +	var input = document.createElement( "input" ), +		select = document.createElement( "select" ), +		opt = select.appendChild( document.createElement( "option" ) ); + +	input.type = "checkbox"; + +	// Support: iOS 5.1, Android 4.x, Android 2.3 +	// Check the default checkbox/radio value ("" on old WebKit; "on" elsewhere) +	support.checkOn = input.value !== ""; + +	// Must access the parent to make an option select properly +	// Support: IE9, IE10 +	support.optSelected = opt.selected; + +	// Make sure that the options inside disabled selects aren't marked as disabled +	// (WebKit marks them as disabled) +	select.disabled = true; +	support.optDisabled = !opt.disabled; + +	// Check if an input maintains its value after becoming a radio +	// Support: IE9, IE10 +	input = document.createElement( "input" ); +	input.value = "t"; +	input.type = "radio"; +	support.radioValue = input.value === "t"; +})(); + +return support; + +}); diff --git a/bower_components/jquery/src/attributes/val.js b/bower_components/jquery/src/attributes/val.js new file mode 100644 index 0000000..42ef323 --- /dev/null +++ b/bower_components/jquery/src/attributes/val.js @@ -0,0 +1,163 @@ +define([ +	"../core", +	"./support", +	"../core/init" +], function( jQuery, support ) { + +var rreturn = /\r/g; + +jQuery.fn.extend({ +	val: function( value ) { +		var hooks, ret, isFunction, +			elem = this[0]; + +		if ( !arguments.length ) { +			if ( elem ) { +				hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + +				if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { +					return ret; +				} + +				ret = elem.value; + +				return typeof ret === "string" ? +					// handle most common string cases +					ret.replace(rreturn, "") : +					// handle cases where value is null/undef or number +					ret == null ? "" : ret; +			} + +			return; +		} + +		isFunction = jQuery.isFunction( value ); + +		return this.each(function( i ) { +			var val; + +			if ( this.nodeType !== 1 ) { +				return; +			} + +			if ( isFunction ) { +				val = value.call( this, i, jQuery( this ).val() ); +			} else { +				val = value; +			} + +			// Treat null/undefined as ""; convert numbers to string +			if ( val == null ) { +				val = ""; + +			} else if ( typeof val === "number" ) { +				val += ""; + +			} else if ( jQuery.isArray( val ) ) { +				val = jQuery.map( val, function( value ) { +					return value == null ? "" : value + ""; +				}); +			} + +			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + +			// If set returns undefined, fall back to normal setting +			if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { +				this.value = val; +			} +		}); +	} +}); + +jQuery.extend({ +	valHooks: { +		option: { +			get: function( elem ) { +				var val = jQuery.find.attr( elem, "value" ); +				return val != null ? +					val : +					// Support: IE10-11+ +					// option.text throws exceptions (#14686, #14858) +					jQuery.trim( jQuery.text( elem ) ); +			} +		}, +		select: { +			get: function( elem ) { +				var value, option, +					options = elem.options, +					index = elem.selectedIndex, +					one = elem.type === "select-one" || index < 0, +					values = one ? null : [], +					max = one ? index + 1 : options.length, +					i = index < 0 ? +						max : +						one ? index : 0; + +				// Loop through all the selected options +				for ( ; i < max; i++ ) { +					option = options[ i ]; + +					// IE6-9 doesn't update selected after form reset (#2551) +					if ( ( option.selected || i === index ) && +							// Don't return options that are disabled or in a disabled optgroup +							( support.optDisabled ? !option.disabled : option.getAttribute( "disabled" ) === null ) && +							( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { + +						// Get the specific value for the option +						value = jQuery( option ).val(); + +						// We don't need an array for one selects +						if ( one ) { +							return value; +						} + +						// Multi-Selects return an array +						values.push( value ); +					} +				} + +				return values; +			}, + +			set: function( elem, value ) { +				var optionSet, option, +					options = elem.options, +					values = jQuery.makeArray( value ), +					i = options.length; + +				while ( i-- ) { +					option = options[ i ]; +					if ( (option.selected = jQuery.inArray( option.value, values ) >= 0) ) { +						optionSet = true; +					} +				} + +				// force browsers to behave consistently when non-matching value is set +				if ( !optionSet ) { +					elem.selectedIndex = -1; +				} +				return values; +			} +		} +	} +}); + +// Radios and checkboxes getter/setter +jQuery.each([ "radio", "checkbox" ], function() { +	jQuery.valHooks[ this ] = { +		set: function( elem, value ) { +			if ( jQuery.isArray( value ) ) { +				return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); +			} +		} +	}; +	if ( !support.checkOn ) { +		jQuery.valHooks[ this ].get = function( elem ) { +			// Support: Webkit +			// "" is returned instead of "on" if a value isn't specified +			return elem.getAttribute("value") === null ? "on" : elem.value; +		}; +	} +}); + +}); | 
