index.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>jQuery Mobile Docs - Configuration</title>
  7. <link rel="stylesheet" href="../../jquery.mobile-1.0.1.min.css" />
  8. <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
  9. <script src="../../jquery.js"></script>
  10. <script src="../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
  11. <script src="../_assets/js/jqm-docs.js"></script>
  12. <script src="../../jquery.mobile-1.0.1.min.js"></script>
  13. </head>
  14. <body>
  15. <div data-role="page" class="type-index">
  16. <div data-role="header" data-theme="f">
  17. <h1>Pages</h1>
  18. <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
  19. </div><!-- /header -->
  20. <div data-role="content">
  21. <h2>Global config tests</h2>
  22. <p>The following links will cause a full page refresh so that the global options configuration can take effect. Each link below will tweak a different option for quick testing.</p>
  23. <ul data-role="listview" data-inset="true">
  24. <li>
  25. <a href="pushState.html" data-ajax="false">
  26. <h3>pushStateEnabled - False</h3>
  27. <p>Enhancement to use history.replaceState in supported browsers, to convert the hash-based Ajax URL into the full document path. </p>
  28. </a>
  29. </li>
  30. <li>
  31. <a href="touchOverflow.html" data-ajax="false">
  32. <h3>touchOverflowEnabled - True</h3>
  33. <p>Enable smoother page transitions and true fixed toolbars in devices that support both the overflow: and overflow-scrolling: touch; CSS properties.</p>
  34. </a>
  35. </li>
  36. <li>
  37. <a href="pageTransition.html" data-ajax="false">
  38. <h3>defaultPageTransition - Fade</h3>
  39. <p>Set the default transition for page changes that use Ajax. Set to 'none' for no transitions by default.</p>
  40. </a>
  41. </li>
  42. <li>
  43. <a href="dialogTransition.html" data-ajax="false">
  44. <h3>defaultDialogTransition - Flip</h3>
  45. <p>Set the default transition for dialog changes that use Ajax. Set to 'none' for no transitions by default.</p>
  46. </a>
  47. </li>
  48. <li>
  49. <a href="minScrollBack.html" data-ajax="false">
  50. <h3>minScrollBack - 999</h3>
  51. <p>Minimum scroll distance that will be remembered when returning to a page.</p>
  52. </a>
  53. </li>
  54. <li>
  55. <a href="loadingMessage.html" data-ajax="false">
  56. <h3>loadingMessage - false</h3>
  57. <p>Set the text that appears when a page is loading. If set to false, the message will not appear at all.</p>
  58. </a>
  59. </li>
  60. <li>
  61. <a href="pageLoadErrorMessage.html" data-ajax="false">
  62. <h3>pageLoadErrorMessage - "Yikes, we broke the internet!"</h3>
  63. <p>Set the text that appears when a page fails to load through Ajax.</p>
  64. </a>
  65. </li>
  66. <li>
  67. <a href="iOSFullscreen.html" data-ajax="false">
  68. <h3>apple-mobile-web-app-capable meta tag</h3>
  69. <p>View the docs without browser chrome in iOS.</p>
  70. </a>
  71. </li>
  72. <li>
  73. <a href="jq17b1.html" data-ajax="false">
  74. <h3>jQuery core version 1.7 Beta 1</h3>
  75. <p>Test the docs with the latest jQuery core version</p>
  76. </a>
  77. </li>
  78. </ul>
  79. </div><!-- /ui-body wrapper -->
  80. </div><!-- /page -->
  81. </body>
  82. </html>