From 50cf4351a6c4b0031f268279b093e38850b90cd6 Mon Sep 17 00:00:00 2001 From: visionmedia Date: Fri, 23 Oct 2009 23:52:38 +0800 Subject: [PATCH] Consistant splits using " " instead of "," This was used in several other areas, and IMO is easier to read and since nothing is multi-word then we misewell use " " --- src/ajax.js | 2 +- src/event.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ajax.js b/src/ajax.js index 858ac4b..1cb7ee5 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -102,7 +102,7 @@ jQuery.fn.extend({ }); // Attach a bunch of functions for handling common AJAX events -jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){ +jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), function(i,o){ jQuery.fn[o] = function(f){ return this.bind(o, f); }; diff --git a/src/event.js b/src/event.js index 69a1043..aabe77e 100644 --- a/src/event.js +++ b/src/event.js @@ -854,9 +854,9 @@ function bindReady() { jQuery.event.add( window, "load", jQuery.ready ); } -jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," + - "mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave," + - "change,select,submit,keydown,keypress,keyup,error").split(","), function( i, name ) { +jQuery.each( ("blur focus load resize scroll unload click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup error").split(" "), function( i, name ) { // Handle event binding jQuery.fn[ name ] = function( fn ) { -- 1.7.10.4