Topic: Mif.Menu.KeyNav bug

In Mif.Menu.KeyNav.js, action method throw exception if current var is null

       ...
    action: function(current){
        if(!current) return; // this line fix the issue ...
        current.menu.close(current);
    }
        ...

Re: Mif.Menu.KeyNav bug

fixed