I have installed the module and applied pagination type infinite scroll. Scrolling works in chrome but it is not working in firefox (tried in 11.0 and 12.0). The scrolling div is appearing in hidden form, when I set it's display to "block" it works. Just don't know why it's not appearing by default.

Comments

ashish bairagi’s picture

Issue tags: +Firefox, +#views, +autoscroll

Also when I enable more links in views pagination part, it works well. Does anybody has the same issue or is there something wrong with my approach, please let me how to solve it?

JonathanHindi’s picture

Same here. Firefox 13

Ciraxis’s picture

firefox 14.0.1 is the same but if you didnt't log in auto scrolls works fine

mustanggb’s picture

Cannot reproduce in 14.0 or 15.0, both logged in and logged out.

Ciraxis’s picture

now with a different pager id everythings works fine

hdennen’s picture

Could be a CSS issue with your layout. Floated elements can confuzzle ajax about where the bottom of the paged content is.

.view-content {
float:left; //necessary if you've got floated fields/rows
margin-bottom:1px; //this is necessary so ajax knows you're at the bottom of the page (if your views rows are floated)
}
#views_infinite_scroll-ajax-loader {
float:left; //puts loader div below view-content
width:100%; //allows centering
margin-bottom:10px; //just so it's not on the browser baseline
}
#views_infinite_scroll-ajax-loader img {
width: auto; //my images are 100% for responsive design. this makes my loader .gif it's actual size
}

That sorted it for me.

ashish bairagi’s picture

will try this fix.

honza pobořil’s picture

Issue summary: View changes
Status: Active » Closed (outdated)
Issue tags: -