]> source.dussan.org Git - jquery.git/commitdiff
Event: compat -> 1.x in comments
authorMichał Gołębiowski <m.goleb@gmail.com>
Mon, 11 Jan 2016 18:21:45 +0000 (19:21 +0100)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 11 Jan 2016 18:21:45 +0000 (19:21 +0100)
Ref 3c56eac50725c2548c3abc0159841c3354936ac4

src/event/trigger.js
test/unit/offset.js

index 448f90878d1707af94440048afbb53243ee2a239..a6fac70ea93e779950ef1c4acc520930cde0016e 100644 (file)
@@ -164,7 +164,7 @@ jQuery.extend( jQuery.event, {
                                // But now, this "simulate" function is used only for events
                                // for which stopPropagation() is noop, so there is no need for that anymore.
                                //
-                               // For the compat branch though, guard for "click" and "submit"
+                               // For the 1.x branch though, guard for "click" and "submit"
                                // events is still used, but was moved to jQuery.event.stopPropagation function
                                // because `originalEvent` should point to the original event for the constancy
                                // with other events and for more focused logic
index 317f4105375ae8b694d07598b8e7bedf30d83303..5100dbf34d77879dfedc910892d74c3b865f6940 100644 (file)
@@ -62,7 +62,7 @@ QUnit.test( "disconnected node", function( assert ) {
 
        var result = jQuery( document.createElement( "div" ) ).offset();
 
-       // These tests are solely for master/compat consistency
+       // These tests are solely for 2.x/1.x consistency
        // Retrieving offset on disconnected/hidden elements is not officially
        // valid input, but will return zeros for back-compat
        assert.equal( result.top, 0, "Check top" );
@@ -77,7 +77,7 @@ QUnit.test( "hidden (display: none) element", function( assert ) {
 
        node.remove();
 
-       // These tests are solely for master/compat consistency
+       // These tests are solely for 2.x/1.x consistency
        // Retrieving offset on disconnected/hidden elements is not officially
        // valid input, but will return zeros for back-compat
        assert.equal( result.top, 0, "Retrieving offset on hidden elements returns zeros (gh-2310)" );
@@ -423,7 +423,7 @@ testIframe( "offset/scroll", "scroll", function( $, win, doc, assert ) {
        assert.equal( $( "#scroll-1-1" ).offset().top, 11, "jQuery('#scroll-1-1').offset().top" );
        assert.equal( $( "#scroll-1-1" ).offset().left, 11, "jQuery('#scroll-1-1').offset().left" );
 
-       // These tests are solely for master/compat consistency
+       // These tests are solely for 2.x/1.x consistency
        // Retrieving offset on disconnected/hidden elements is not officially
        // valid input, but will return zeros for back-compat
        // assert.equal( $( "#hidden" ).offset().top, 0, "Hidden elements do not subtract scroll" );