jquery event & fx: tidying some comments.
authorAriel Flesler <aflesler@gmail.com>
Tue, 13 May 2008 01:42:35 +0000 (01:42 +0000)
committerAriel Flesler <aflesler@gmail.com>
Tue, 13 May 2008 01:42:35 +0000 (01:42 +0000)
src/event.js
src/fx.js

index a255f55..40815ec 100644 (file)
@@ -244,7 +244,8 @@ jQuery.event = {
                namespace = event.type.split(".");
                event.type = namespace[0];
                namespace = namespace[1];
-               all = !namespace && !event.exclusive; //cache this now, all = true means, any handler
+               // Cache this now, all = true means, any handler
+               all = !namespace && !event.exclusive;
 
                handlers = ( jQuery.data(this, "events") || {} )[event.type];
 
@@ -346,7 +347,8 @@ jQuery.event = {
        proxy: function( fn, proxy ){
                // Set the guid of unique handler to the same of original handler, so it can be removed 
                proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++;
-               return proxy;//so proxy can be declared as an argument
+               // So proxy can be declared as an argument
+               return proxy;
        },
        
        special: {
index 1a4e8c9..3404ddb 100644 (file)
--- a/src/fx.js
+++ b/src/fx.js
@@ -405,7 +405,8 @@ jQuery.extend( jQuery.fx, {
        speeds:{
                slow: 600,  
                fast: 200,
-               def: 400 //default speed
+               // Default speed
+               def: 400
        },
        step: {
                scrollLeft: function(fx){