"ajaxLinksEnabled: false" no longer working for listview links in alpha 4?

"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:
  1. $(document).bind("mobileinit", function(){
  2.   $.extend(  $.mobile , {
  3.     ajaxFormsEnabled: false,
  4. ajaxLinksEnabled: false
  5.   });
  6. });
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:
  1. <ul data-role="listview">
  2.   <li>
  3.     <a href="/path">
  4.       <h1>Text</h1>
  5.       <p>More text</p>
  6.     </a>
  7.   </li>
  8. </ul>
Is there something I am missing?

Thanks.
    • Topic Participants

    • joel