Menu: make the move method private

This commit is contained in:
jzaefferer 2010-06-19 17:03:08 +02:00
parent 2360af22a8
commit d5df3a5a56

View File

@ -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;