diff options
author | kborchers <kris.borchers@gmail.com> | 2011-12-07 14:51:46 -0600 |
---|---|---|
committer | kborchers <kris.borchers@gmail.com> | 2011-12-07 14:51:46 -0600 |
commit | aa8c4770a9a88cc4a870f4adf33ba2466e30bfcf (patch) | |
tree | 02d7494f37adf45bd24f2a0f61490beab868ff89 /tests | |
parent | 1748b5f404c4a8ffe9d5bd8954aa0764fea27d70 (diff) | |
download | jquery-ui-aa8c4770a9a88cc4a870f4adf33ba2466e30bfcf.tar.gz jquery-ui-aa8c4770a9a88cc4a870f4adf33ba2466e30bfcf.zip |
Menu: Update the default visual test to use the new menus option that replaced the items option
Diffstat (limited to 'tests')
-rw-r--r-- | tests/visual/menu/menu.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/visual/menu/menu.html b/tests/visual/menu/menu.html index 50837f43e..0715ac7f7 100644 --- a/tests/visual/menu/menu.html +++ b/tests/visual/menu/menu.html @@ -28,14 +28,14 @@ select: function(event, ui) { $("<div/>").text("Selected: " + ui.item.text()).appendTo("#log"); }, - items: "div" + menus: "div" }); $("#menu6").menu({ select: function(event, ui) { $("<div/>").text("Selected: " + ui.item.text()).appendTo("#log"); }, - items: ".menuElement" + menus: ".menuElement" }); } |