Topic: MifMenu - page scroller flicker
moro,
this method in Mif.Menu.Container causes page height to increase (it injects a container into document body) and after menu is properly sized and positioned, body height decreases again.
inject: function(element, how){
this.container.inject(element, how)
return this.draw();
}
This causes page flicker in Firefox in cases when document body height is near window height - page content is quickly shifted left and back to its original position.
Is it possible to inject the container somewhere outside visible area?
Thanks