]> source.dussan.org Git - jquery.git/commitdiff
Tests:Docs: Fix various typos
authorGary Ye <garysye@gmail.com>
Fri, 18 Sep 2015 16:59:48 +0000 (09:59 -0700)
committerOleg Gaidarenko <markelog@gmail.com>
Mon, 12 Oct 2015 15:09:37 +0000 (18:09 +0300)
* Changes "baar" to "bar" when used with "foo" in readme
  and comments of js files

* mousenter -> mouseenter

Thanks @garysye, @KimTaehee

Cherry-picked from 03eaadb131df925d1072afd2496ee3b41d2f1fc6
Closes gh-2613
Closes gh-2601

README.md
src/event.js
test/data/jquery-1.9.1.js
test/data/testinit.js
test/unit/event.js
test/unit/selector.js

index ac66d0ac7a2c5844fccdd3ea3da36728c9d14cd1..3c1b2f355294dfe4554dd0ea1ddcd4ca43c46971 100644 (file)
--- a/README.md
+++ b/README.md
@@ -296,7 +296,7 @@ t( testName, selector, [ "array", "of", "ids" ] );
 Example:
 
 ```js
-t("Check for something", "//[a]", ["foo", "baar"]);
+t("Check for something", "//[a]", ["foo", "bar"]);
 ```
 
 
index 6cb4db55173fac0851b6265202d0573c24241813..e93a270931798fed21832f641e3e7ef4b2fbdd13 100644 (file)
@@ -893,7 +893,7 @@ jQuery.each( {
                                related = event.relatedTarget,
                                handleObj = event.handleObj;
 
-                       // For mousenter/leave call the handler if related is outside the target.
+                       // For mouseenter/leave call the handler if related is outside the target.
                        // NB: No relatedTarget if the mouse left/entered the browser window
                        if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
                                event.type = handleObj.origType;
index 80c97a226a9833674b06d341ca9f8e93389e9d33..81bdf19f323ddcdfbdb8796e2eed9790c9f222f1 100644 (file)
@@ -3525,7 +3525,7 @@ jQuery.each( {
                                related = event.relatedTarget,
                                handleObj = event.handleObj;
 
-                       // For mousenter/leave call the handler if related is outside the target.
+                       // For mouseenter/leave call the handler if related is outside the target.
                        // NB: No relatedTarget if the mouse left/entered the browser window
                        if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
                                event.type = handleObj.origType;
index 1815d8f7b747f40206013a7efe241f4cc9c28000..e88df966f4793aae6fbb5b590705494583ee9e21 100644 (file)
@@ -35,8 +35,8 @@ this.q = function() {
  * @param {String} a - Assertion name
  * @param {String} b - Sizzle selector
  * @param {String} c - Array of ids to construct what is expected
- * @example t("Check for something", "//[a]", ["foo", "baar"]);
- * @result returns true if "//[a]" return two elements with the IDs 'foo' and 'baar'
+ * @example t("Check for something", "//[a]", ["foo", "bar"]);
+ * @result returns true if "//[a]" return two elements with the IDs 'foo' and 'bar'
  */
 QUnit.assert.t = function( a, b, c ) {
        var f = jQuery( b ).get(),
index 4d4d7f1cad0b9740e316ca34474a5058f7bc70c9..1750ed61b1be23fffef4ad0e5fe5a317878dc7f6 100644 (file)
@@ -882,7 +882,7 @@ QUnit.test( "withinElement implemented with jQuery.contains()", function( assert
 
        } ).trigger( "mouseenter" );
 
-       jQuery( "#jc-inner" ).trigger( "mousenter" );
+       jQuery( "#jc-inner" ).trigger( "mouseenter" );
 
        jQuery( "#jc-outer" ).off( "mouseenter mouseleave" ).remove();
        jQuery( "#jc-inner" ).remove();
index ade5d24df053c02c5eb3576bb35cd8a77876d114..969b7abaf06caeb9a0c7d1e0f5162a66b61f0cc6 100644 (file)
@@ -293,7 +293,7 @@ testIframe(
 
                /**
                 * Asserts that a select matches the given IDs
-                * @example t("Check for something", "//[a]", ["foo", "baar"]);
+                * @example t("Check for something", "//[a]", ["foo", "bar"]);
                 * @param {String} a - Assertion name
                 * @param {String} b - Sizzle selector
                 * @param {Array} c - Array of ids to construct what is expected