jquery event & fx: tidying some comments.
This commit is contained in:
parent
70b5e670ca
commit
20a7bff401
2 changed files with 6 additions and 3 deletions
|
@ -244,7 +244,8 @@ jQuery.event = {
|
||||||
namespace = event.type.split(".");
|
namespace = event.type.split(".");
|
||||||
event.type = namespace[0];
|
event.type = namespace[0];
|
||||||
namespace = namespace[1];
|
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];
|
handlers = ( jQuery.data(this, "events") || {} )[event.type];
|
||||||
|
|
||||||
|
@ -346,7 +347,8 @@ jQuery.event = {
|
||||||
proxy: function( fn, proxy ){
|
proxy: function( fn, proxy ){
|
||||||
// Set the guid of unique handler to the same of original handler, so it can be removed
|
// 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++;
|
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: {
|
special: {
|
||||||
|
|
|
@ -405,7 +405,8 @@ jQuery.extend( jQuery.fx, {
|
||||||
speeds:{
|
speeds:{
|
||||||
slow: 600,
|
slow: 600,
|
||||||
fast: 200,
|
fast: 200,
|
||||||
def: 400 //default speed
|
// Default speed
|
||||||
|
def: 400
|
||||||
},
|
},
|
||||||
step: {
|
step: {
|
||||||
scrollLeft: function(fx){
|
scrollLeft: function(fx){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue