File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ var Events = {
85
85
} ,
86
86
87
87
/*
88
- * This function behaves like jQueries triggerHandler. It calls
88
+ * This function behaves like jQuery's triggerHandler. It calls
89
89
* all handlers for a particular event and returns the return value
90
90
* of the LAST handler. This function also triggers jQuery's
91
91
* triggerHandler for backwards compatibility.
@@ -98,7 +98,7 @@ var Events = {
98
98
var jQueryHandlerValue ;
99
99
var nodeEventHandlerValue ;
100
100
/*
101
- * If Jquery exists run all its handlers for this event and
101
+ * If jQuery exists run all its handlers for this event and
102
102
* collect the return value of the LAST handler function
103
103
*/
104
104
if ( typeof jQuery !== 'undefined' ) {
@@ -133,9 +133,9 @@ var Events = {
133
133
nodeEventHandlerValue = lastHandler ( data ) ;
134
134
135
135
/*
136
- * Return either the jquery handler value if it exists or the
137
- * nodeEventHandler value. Jquery event value superceeds nodejs
138
- * events for backwards compatability reasons.
136
+ * Return either the jQuery handler value if it exists or the
137
+ * nodeEventHandler value. jQuery event value supersedes nodejs
138
+ * events for backwards compatibility reasons.
139
139
*/
140
140
return jQueryHandlerValue !== undefined ? jQueryHandlerValue :
141
141
nodeEventHandlerValue ;
You can’t perform that action at this time.
0 commit comments