Permalink
Browse files
Menu: make the move method private
- Loading branch information
Showing
with
3 additions
and
3 deletions.
-
+3
−3
ui/jquery.ui.menu.js
|
|
@@ -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; |
|
|
|