Long menu overlaps issue

there is a bug inside var windowResize = function()

the auto-hide menu items forget to consider the width of the li.All item.

=================Original============================
line:314
while (tiw > tw) {
ti = $(’.desktop-toolbar ul.navbar-nav > li’).not(’.hidden’).not(’.all’);
$(ti).last().addClass(‘hidden’);
tiw = 0;
ti.each(calcTiw);
}

=================Correct============================

                while (tiw > tw) {
                  //FIX TIA by HandALM
                  ti = $('.desktop-toolbar ul.navbar-nav > li').not('.hidden').not('.all');
                  tia = $('.desktop-toolbar ul.navbar-nav > li').not('.hidden');
                  $(ti).last().addClass('hidden');
                  tiw = 0;
                  tia.each(calcTiw);
                }

please fix this issue in the future release