Lines Matching refs:prop

1968 		for ( var i = this.props.length, prop; i; ) {
1969 prop = this.props[ --i ];
1970 event[ prop ] = originalEvent[ prop ];
3537 for ( var prop in oldSizzle ) {
3538 Sizzle[ prop ] = oldSizzle[ prop ];
5549 animate: function( prop, speed, easing, callback ) { argument
5552 if ( jQuery.isEmptyObject( prop ) ) {
5561 for ( p in prop ) {
5565 prop[ name ] = prop[ p ];
5566 delete prop[ p ];
5570 if ( prop[p] === "hide" && hidden || prop[p] === "show" && !hidden ) {
5582 if ( jQuery.isArray( prop[p] ) ) {
5584 (opt.specialEasing = opt.specialEasing || {})[p] = prop[p][1];
5585 prop[p] = prop[p][0];
5593 opt.curAnim = jQuery.extend({}, prop);
5595 jQuery.each( prop, function( name, val ) {
5599 e[ val === "toggle" ? hidden ? "show" : "hide" : val ]( prop );
5715 fx: function( elem, options, prop ) { argument
5718 this.prop = prop;
5734 (jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
5737 if ( ( this.prop === "height" || this.prop === "width" ) && this.elem.style ) {
5744 if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) ) {
5745 return this.elem[ this.prop ];
5748 var r = parseFloat(jQuery.css(this.elem, this.prop, force));
5749 return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
5776 this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
5782 this.custom(this.prop === "width" || this.prop === "height" ? 1 : 0, this.cur());
5791 this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
5807 this.options.curAnim[ this.prop ] = true;
5852 var specialEasing = this.options.specialEasing && this.options.specialEasing[this.prop];
5898 if ( fx.elem.style && fx.elem.style[ fx.prop ] != null ) {
5899 …fx.elem.style[ fx.prop ] = (fx.prop === "width" || fx.prop === "height" ? Math.max(0, fx.now) : fx…
5901 fx.elem[ fx.prop ] = fx.now;