/Source/Bifrost.Web/index.html

# · HTML · 22 lines · 20 code · 2 blank · 0 comment · 0 complexity · d8f4e0be93700d719a91d507b46c6239 MD5 · raw file

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title></title>
  5. <script src="Scripts/jquery-1.7.1.js" type="text/javascript"></script>
  6. <script src="Scripts/knockout-1.3.0beta.js" type="text/javascript"></script>
  7. <script src="Scripts/jQuery.tmpl.js" type="text/javascript"></script>
  8. <script src="Scripts/bifrost.commands.js" type="text/javascript"></script>
  9. <script src="viewModel.js" type="text/javascript"></script>
  10. </head>
  11. <body>
  12. <div data-bind="{visible:doStuffCommand.isBusy}">
  13. Please wait, executing stuff
  14. </div>
  15. <span data-bind="{text:message}"></span>
  16. <input type="text" data-bind="{value:stringParameter}" />
  17. <button data-bind="command:doStuffCommand">Click me</button>
  18. <button data-bind="command:doOtherStuffCommand">Click me for something else</button>
  19. </body>
  20. </html>