diff options
author | TJ VanToll <tj.vantoll@gmail.com> | 2013-08-03 17:52:11 -0400 |
---|---|---|
committer | TJ VanToll <tj.vantoll@gmail.com> | 2013-08-03 17:52:11 -0400 |
commit | afdf8986591e19404a9b67d1053ce292d754d841 (patch) | |
tree | a2c8358f401e2fdfc5135a4dc477e143d589a3a6 /tests | |
parent | 484e382259f1c1c56b151a97ddf8a894f94d17ea (diff) | |
download | jquery-ui-afdf8986591e19404a9b67d1053ce292d754d841.tar.gz jquery-ui-afdf8986591e19404a9b67d1053ce292d754d841.zip |
Menu tests: jshint cleanup of unused argument
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/menu/menu_events.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/menu/menu_events.js b/tests/unit/menu/menu_events.js index 4b152dcf4..405300c46 100644 --- a/tests/unit/menu/menu_events.js +++ b/tests/unit/menu/menu_events.js @@ -622,7 +622,7 @@ test( "ensure default is prevented when clicking on anchors in disabled menus ", test( "#9469: Stopping propagation in a select event should not suppress subsequent select events.", function() { expect( 1 ); var element = $( "#menu1" ).menu({ - select: function( event, ui ) { + select: function( event ) { log(); event.stopPropagation(); } |