Changeset 5576
- Timestamp:
- 05/13/08 01:42:35 (4 months ago)
- Location:
- trunk/jquery/src
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/jquery/src/event.js
r5570 r5576 245 245 event.type = namespace[0]; 246 246 namespace = namespace[1]; 247 all = !namespace && !event.exclusive; //cache this now, all = true means, any handler 247 // Cache this now, all = true means, any handler 248 all = !namespace && !event.exclusive; 248 249 249 250 handlers = ( jQuery.data(this, "events") || {} )[event.type]; … … 347 348 // Set the guid of unique handler to the same of original handler, so it can be removed 348 349 proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++; 349 return proxy;//so proxy can be declared as an argument 350 // So proxy can be declared as an argument 351 return proxy; 350 352 }, 351 353 -
trunk/jquery/src/fx.js
r5570 r5576 406 406 slow: 600, 407 407 fast: 200, 408 def: 400 //default speed 408 // Default speed 409 def: 400 409 410 }, 410 411 step: {
