"ajaxLinksEnabled: false" no longer working for listview links in alpha 4?
I use this code to prevent the ajax page transitions and ensure new data is loaded each time a page is visited:
- $(document).bind("mobileinit", function(){
- $.extend( $.mobile , {
- ajaxFormsEnabled: false,
- ajaxLinksEnabled: false
- });
- });
This was working fine in alpha 3, but in alpha 4, it no longer works on my links that are within a list view (it still works everywhere else). Could this be due to the change made for how links work in the listview? I did have to refactor the code there for the change of "New list markup conventions".
My list code looks like this:
- <ul data-role="listview">
- <li>
- <a href="/path">
- <h1>Text</h1>
- <p>More text</p>
- </a>
- </li>
- </ul>
Is there something I am missing?
Thanks.