Alpha 1.0a4.1 button bug?? - active theme applied and remains

Alpha 1.0a4.1 button bug?? - active theme applied and remains

Hi,

If you run up the following page (updating the reference links as required), you'll notice that when you click on a button, it stays blue.  Revert back to version 1.0a3 and the issue is not present.  I had problems with 1.0a4 so can't say whether the problem's there as well.

Also, ie9 working much better - but one of the themes (c I think) comes as an unreadable blue.

cheers

Matt

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Active button bug</title>
  5.     
  6. <%--   <link href="../Styles/jquery.mobile-1.0a3.css" rel="stylesheet" type="text/css" />
  7.     <script src="../Scripts/jquery-1.5.js" type="text/javascript"></script>
  8.     <script src="../Scripts/jquery.mobile-1.0a3.js" type="text/javascript"></script>--%>

  9.     <link href="../Styles/jquery.mobile-1.0a4.1.min.css" rel="stylesheet" type="text/css" />
  10.     <script src="../Scripts/jquery-1.5.2.js" type="text/javascript"></script>
  11.     <script src="../Scripts/jquery.mobile-1.0a4.1.min.js" type="text/javascript"></script>

  12. </head>
  13. <body>
  14.     <div data-role="page" data-theme="h">
  15.         <div data-role="header">
  16.             <h1 class="ui-title" tabindex="0" role="heading" aria-level="1">
  17.                 Button bug - active theme applied and remains</h1>
  18.         </div>
  19.         <div id="folioContent" data-role="content" class="ui-content" role="main">
  20.             <a data-role="button" data-theme="c" href="#">button 1</a>
  21.             <a data-role="button" data-theme="c" href="#">button 2</a>
  22.         </div>
  23.     </div>
  24.     <div data-role="page">
  25.     </div>
  26. </body>
  27. </html>