diff options
Diffstat (limited to 'src/event.js')
-rw-r--r-- | src/event.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/event.js b/src/event.js index 859f99e08..ab2c63cd1 100644 --- a/src/event.js +++ b/src/event.js @@ -2,13 +2,13 @@ define( [ "./core", "./var/document", "./var/documentElement", - "./var/rnotwhite", + "./var/rnothtmlwhite", "./var/slice", "./data/var/dataPriv", "./core/init", "./selector" -], function( jQuery, document, documentElement, rnotwhite, slice, dataPriv ) { +], function( jQuery, document, documentElement, rnothtmlwhite, slice, dataPriv ) { "use strict"; @@ -147,7 +147,7 @@ jQuery.event = { } // Handle multiple events separated by a space - types = ( types || "" ).match( rnotwhite ) || [ "" ]; + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; @@ -229,7 +229,7 @@ jQuery.event = { } // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnotwhite ) || [ "" ]; + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; |