Hello lifters!
I'm not sure this one is a bug or some kind of wrong usage. :) Hope someone can help me out.
I have three parts in one HTML template that are lazy loaded like this:
<div class="lift:lazy-load?template=loader/_spinner-template container">
<div class="row">
<div class="large-12 columns content-centered">
<div>Content</div>
</div>
</div>
</div>
<div class="lift:lazy-load?template=loader/_spinner-template container">
<div class="row">
<div class="large-12 columns content-centered">
<div>Content2</div>
</div>
</div>
</div>
<div class="lift:lazy-load?template=loader/_spinner-template-big container">
<div class="row">
<div class="large-12 columns content-centered">
<div>Content3</div>
</div>
</div>
</div>
The first two parts are loaded perfectly well on every page reload. The third part only shows up sometimes (random) after a page reload. I had a look at the response content triggered by the ajax handling of lift and can see the html for blocks 1 and 2 showing up on any request and the third one randomly again.
Any ideas?
I'm using lift 2.5-RC5 and jetty 8
Thanks!
Alex