Bug Tracker

Changeset 5351

Show
Ignore:
Timestamp:
04/29/08 21:37:41 (8 months ago)
Author:
aflesler
Message:

jquery event: adding some whitespaces to the last change.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/src/event.js

    r5350 r5351  
    444444        return this.click(function(event) { 
    445445            // Figure out which function to execute 
    446             this.lastToggle = (this.lastToggle||0) % args.length; 
     446            this.lastToggle = ( this.lastToggle || 0 ) % args.length; 
    447447             
    448448            // Make sure that clicks stop 
     
    450450             
    451451            // and execute the function 
    452             return args[this.lastToggle++].apply( this, arguments ) || false; 
     452            return args[ this.lastToggle++ ].apply( this, arguments ) || false; 
    453453        }); 
    454454    },