Skip to content

Commit

Permalink
Interaction: Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed May 25, 2012
1 parent 9f454b2 commit 3f9adca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/jquery.ui.interaction.js
Expand Up @@ -12,7 +12,7 @@
*/
(function( $, undefined ) {

var interaction; // = $.ui.interaction
var interaction, touchHook, pointerHook;

$.widget( "ui.interaction", {
version: "@VERSION",
Expand Down Expand Up @@ -46,7 +46,7 @@ $.widget( "ui.interaction", {
var that = this;
return function( event, target, pointerPosition ) {
return that._interactionStart( event, target, pointerPosition, hook );
}
};
},

_interactionStart: function( event, target, pointerPosition, hook ) {
Expand Down Expand Up @@ -149,7 +149,7 @@ function getTouch( event ) {
}
}

var touchHook = interaction.hooks.touch = {
touchHook = interaction.hooks.touch = {
setup: function( widget, start ) {
widget._bind( widget.widget(), {
"touchstart": function( event ) {
Expand Down Expand Up @@ -214,7 +214,7 @@ var touchHook = interaction.hooks.touch = {
}
};

var pointerHook = interaction.hooks.msPointer = {
pointerHook = interaction.hooks.msPointer = {
setup: function( widget, start ) {
widget._bind( widget.widget(), {
"MSPointerDown": function( _event ) {
Expand Down

0 comments on commit 3f9adca

Please sign in to comment.