PageRenderTime 30ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 1ms

/ext-4.0.7/examples/history/history.html

https://bitbucket.org/srogerf/javascript
HTML | 27 lines | 21 code | 5 blank | 1 comment | 0 complexity | a58a72fe9faf33daf818f1e96b3ed99d MD5 | raw file
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <title>History Example</title>
  5. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css"/>
  6. <link rel="stylesheet" type="text/css" href="../shared/example.css"/>
  7. <script type="text/javascript" src="../../bootstrap.js"></script>
  8. <script type="text/javascript" src="history.js"></script>
  9. </head>
  10. <body>
  11. <h1>History Example</h1>
  12. <p>This is a simple implementation of the <tt>Ext.History</tt> component for managing browser back/forward navigation within a single page.</p>
  13. <p>It demonstrates managing history for multiple components within the page. Simply change tabs and use the browser Back
  14. and Forward buttons to navigate them.</p>
  15. <p>The js is not minified so it is readable. See <a href="history.js">history.js</a>.</p>
  16. <!-- Fields required for history management -->
  17. <form id="history-form" class="x-hide-display">
  18. <input type="hidden" id="x-history-field" />
  19. <iframe id="x-history-frame"></iframe>
  20. </form>
  21. </body>
  22. </html>