pause.rml 534 B

1234567891011121314151617181920212223242526
  1. <rml>
  2. <head>
  3. <title>Quit?</title>
  4. <link type="text/template" href="../../assets/window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 350dp;
  9. height: 135dp;
  10. margin: auto;
  11. }
  12. div#title_bar div#icon
  13. {
  14. decorator: image( icon-flag );
  15. }
  16. </style>
  17. </head>
  18. <body template="window" onload="pause" onunload="unpause">
  19. <br />
  20. <p>Are you sure you want to end this game?</p>
  21. <button onclick="goto high_score; close game_window" autofocus>Yes</button>
  22. <button onclick="close">No!</button>
  23. </body>
  24. </rml>