Skip to content

Commit

Permalink
Slider: Whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Mar 1, 2012
1 parent 3a0b8b8 commit 98daa6a
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions ui/jquery.ui.slider.js
Expand Up @@ -74,7 +74,7 @@ $.widget( "ui.slider", $.ui.mouse, {
.addClass( "ui-slider-range" +
// note: this isn't the most fittingly semantic framework class for this element,
// but worked best visually with a variety of themes
" ui-widget-header" +
" ui-widget-header" +
( ( o.range === "min" || o.range === "max" ) ? " ui-slider-range-" + o.range : "" ) );
}

Expand Down Expand Up @@ -120,11 +120,11 @@ $.widget( "ui.slider", $.ui.mouse, {
curVal,
newVal,
step;

if ( self.options.disabled ) {
return;
}

switch ( event.keyCode ) {
case $.ui.keyCode.HOME:
case $.ui.keyCode.END:
Expand All @@ -145,14 +145,14 @@ $.widget( "ui.slider", $.ui.mouse, {
}
break;
}

step = self.options.step;
if ( self.options.values && self.options.values.length ) {
curVal = newVal = self.values( index );
} else {
curVal = newVal = self.value();
}

switch ( event.keyCode ) {
case $.ui.keyCode.HOME:
newVal = self._valueMin();
Expand Down Expand Up @@ -181,19 +181,19 @@ $.widget( "ui.slider", $.ui.mouse, {
newVal = self._trimAlignValue( curVal - step );
break;
}

self._slide( event, index, newVal );
})
.keyup(function( event ) {
var index = $( this ).data( "index.ui-slider-handle" );

if ( self._keySliding ) {
self._keySliding = false;
self._stop( event, index );
self._change( event, index );
$( this ).removeClass( "ui-state-active" );
}

});

this._refreshValue();
Expand Down Expand Up @@ -275,7 +275,7 @@ $.widget( "ui.slider", $.ui.mouse, {
closestHandle
.addClass( "ui-state-active" )
.focus();

offset = closestHandle.offset();
mouseOverHandle = !$( event.target ).parents().andSelf().is( ".ui-slider-handle" );
this._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : {
Expand All @@ -301,7 +301,7 @@ $.widget( "ui.slider", $.ui.mouse, {
_mouseDrag: function( event ) {
var position = { x: event.pageX, y: event.pageY },
normValue = this._normValueFromMouse( position );

this._slide( event, this._handleIndex, normValue );

return false;
Expand All @@ -320,7 +320,7 @@ $.widget( "ui.slider", $.ui.mouse, {

return false;
},

_detectOrientation: function() {
this.orientation = ( this.options.orientation === "vertical" ) ? "vertical" : "horizontal";
},
Expand Down Expand Up @@ -377,7 +377,7 @@ $.widget( "ui.slider", $.ui.mouse, {
if ( this.options.values && this.options.values.length ) {
otherVal = this.values( index ? 0 : 1 );

if ( ( this.options.values.length === 2 && this.options.range === true ) &&
if ( ( this.options.values.length === 2 && this.options.range === true ) &&
( ( index === 0 && newVal > otherVal) || ( index === 1 && newVal < otherVal ) )
) {
newVal = otherVal;
Expand Down Expand Up @@ -562,7 +562,7 @@ $.widget( "ui.slider", $.ui.mouse, {
return vals;
}
},

// returns the step-aligned value that val is closest to, between (inclusive) min and max
_trimAlignValue: function( val ) {
if ( val <= this._valueMin() ) {
Expand Down Expand Up @@ -591,7 +591,7 @@ $.widget( "ui.slider", $.ui.mouse, {
_valueMax: function() {
return this.options.max;
},

_refreshValue: function() {
var oRange = this.options.range,
o = this.options,
Expand Down

0 comments on commit 98daa6a

Please sign in to comment.