diff options
Diffstat (limited to 'wp-includes/js/jquery/ui/menu.js')
-rw-r--r-- | wp-includes/js/jquery/ui/menu.js | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/wp-includes/js/jquery/ui/menu.js b/wp-includes/js/jquery/ui/menu.js index b4f408b..869e429 100644 --- a/wp-includes/js/jquery/ui/menu.js +++ b/wp-includes/js/jquery/ui/menu.js @@ -1,17 +1,17 @@ /*! - * jQuery UI Menu 1.13.2 - * http://jqueryui.com + * jQuery UI Menu 1.13.3 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Menu //>>group: Widgets //>>description: Creates nestable menus. -//>>docs: http://api.jqueryui.com/menu/ -//>>demos: http://jqueryui.com/menu/ +//>>docs: https://api.jqueryui.com/menu/ +//>>demos: https://jqueryui.com/menu/ //>>css.structure: ../../themes/base/core.css //>>css.structure: ../../themes/base/menu.css //>>css.theme: ../../themes/base/theme.css @@ -24,7 +24,12 @@ // AMD. Register as an anonymous module. define( [ "jquery", - "./core" + "../keycode", + "../position", + "../safe-active-element", + "../unique-id", + "../version", + "../widget" ], factory ); } else { @@ -35,7 +40,7 @@ "use strict"; return $.widget( "ui.menu", { - version: "1.13.2", + version: "1.13.3", defaultElement: "<ul>", delay: 300, options: { |