/Source/Bifrost.Web/index.html
# · HTML · 22 lines · 20 code · 2 blank · 0 comment · 0 complexity · d8f4e0be93700d719a91d507b46c6239 MD5 · raw file
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title></title>
- <script src="Scripts/jquery-1.7.1.js" type="text/javascript"></script>
- <script src="Scripts/knockout-1.3.0beta.js" type="text/javascript"></script>
- <script src="Scripts/jQuery.tmpl.js" type="text/javascript"></script>
- <script src="Scripts/bifrost.commands.js" type="text/javascript"></script>
- <script src="viewModel.js" type="text/javascript"></script>
- </head>
- <body>
- <div data-bind="{visible:doStuffCommand.isBusy}">
- Please wait, executing stuff
- </div>
-
- <span data-bind="{text:message}"></span>
- <input type="text" data-bind="{value:stringParameter}" />
- <button data-bind="command:doStuffCommand">Click me</button>
- <button data-bind="command:doOtherStuffCommand">Click me for something else</button>
-
- </body>
- </html>