diff --git a/source/Ox.UI/js/Menu/MainMenu.js b/source/Ox.UI/js/Menu/MainMenu.js index 781f5cdc..73bcd17f 100644 --- a/source/Ox.UI/js/Menu/MainMenu.js +++ b/source/Ox.UI/js/Menu/MainMenu.js @@ -201,6 +201,14 @@ Ox.MainMenu = function(options, self) { return menu; }; + that.highlightMenu = function(id) { + var position = Ox.getIndexById(self.options.menus, id); + that.titles[position].addClass('OxSelected'); + setTimeout(function() { + that.titles[position].removeClass('OxSelected'); + }, 250); + }; + that.removeMenu = function() { };