mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04:00
Menu: make the move method private
This commit is contained in:
6
ui/jquery.ui.menu.js
vendored
6
ui/jquery.ui.menu.js
vendored
@@ -147,11 +147,11 @@ $.widget("ui.menu", {
|
||||
},
|
||||
|
||||
next: function(event) {
|
||||
this.move("next", ".ui-menu-item:first", event);
|
||||
this._move("next", ".ui-menu-item:first", event);
|
||||
},
|
||||
|
||||
previous: function(event) {
|
||||
this.move("prev", ".ui-menu-item:last", event);
|
||||
this._move("prev", ".ui-menu-item:last", event);
|
||||
},
|
||||
|
||||
first: function() {
|
||||
@@ -162,7 +162,7 @@ $.widget("ui.menu", {
|
||||
return this.active && !this.active.next().length;
|
||||
},
|
||||
|
||||
move: function(direction, edge, event) {
|
||||
_move: function(direction, edge, event) {
|
||||
if (!this.active) {
|
||||
this.activate(event, this.element.children(edge));
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user