]> source.dussan.org Git - jquery-ui.git/commitdiff
Menu: Remove core event/alias and deprecated module dependencies
authorAlexander Schmitz <arschmitz@gmail.com>
Thu, 14 May 2015 02:10:34 +0000 (22:10 -0400)
committerAlexander Schmitz <arschmitz@gmail.com>
Wed, 20 May 2015 18:27:56 +0000 (14:27 -0400)
tests/unit/menu/core.js
tests/unit/menu/events.js

index 08644c31f34b9726f97db40d6b04b17f8aca246b..dc853be3c59efe37bc0dcd0d19d0b5a1fd3759a7 100644 (file)
@@ -47,8 +47,8 @@ asyncTest( "#9044: Autofocus issue with dialog opened from menu widget", functio
 
        $( "<input>", { id: "test9044" } ).appendTo( "body" );
 
-       $( "#testID1" ).bind( "click", function() {
-               $( "#test9044" ).focus();
+       $( "#testID1" ).on( "click", function() {
+               $( "#test9044" ).trigger( "focus" );
        });
 
        testHelper.click( element, "3" );
index 5cac3e7372700d3838cae76bfcc5ee9928038577..88a1f288c50202d37eb67d61370ea3d32d090528 100644 (file)
@@ -62,7 +62,7 @@ asyncTest( "handle blur", function() {
 
        click( element, "1" );
        setTimeout(function() {
-               element.blur();
+               element.trigger( "blur" );
                setTimeout(function() {
                        start();
                }, 350 );
@@ -303,7 +303,7 @@ asyncTest( "handle keyboard navigation on menu without scroll and with submenus"
                equal( logOutput(), "keydown,1,2", "Keydown DOWN" );
                setTimeout( menukeyboard1 );
        });
-       element.focus();
+       element.trigger( "focus" );
 
        function menukeyboard1() {
                log( "keydown", true );
@@ -498,7 +498,7 @@ asyncTest( "handle keyboard navigation on menu with scroll and with submenus", f
                equal( logOutput(), "keydown,1,2", "Keydown DOWN" );
                setTimeout( menukeyboard1 );
        });
-       element.focus();
+       element.trigger( "focus" );
 
        function menukeyboard1() {
                log( "keydown", true );
@@ -593,7 +593,7 @@ asyncTest( "handle keyboard navigation and mouse click on menu with disabled ite
                equal( logOutput(), "keydown,1", "Keydown focus but not select disabled item" );
                setTimeout( menukeyboard1, 50 );
        });
-       element.focus();
+       element.trigger( "focus" );
 
        function menukeyboard1() {
                log( "keydown", true );
@@ -645,7 +645,7 @@ asyncTest( "handle keyboard navigation and mouse click on menu with dividers and
                equal( logOutput(), "keydown,2,Ada", "Keydown skips initial group label" );
                setTimeout( menukeyboard1, 50 );
        });
-       element.focus();
+       element.trigger( "focus" );
 
        function menukeyboard1() {
                log( "keydown", true );