| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 | |
| 3 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 4 for details. All rights reserved. Use of this source code is governed by a | |
| 5 BSD-style license that can be found in the LICENSE file. --> | |
| 6 | |
| 7 <html> | |
| 8 <head> | |
| 9 <meta charset="utf-8"> | |
| 10 <title>Slider Menu Demo</title> | |
| 11 <link rel="stylesheet" type="text/css" href="../ui_lib/view/resources/view.c
ss"> | |
| 12 <link rel="stylesheet" type="text/css" href="slider_sample.css"> | |
| 13 </head> | |
| 14 <body> | |
| 15 <h1>Slider</h1> | |
| 16 | |
| 17 <p>A simple app showing use of the SliderMenu view and DOM queries.</p> | |
| 18 | |
| 19 <div id="container"> | |
| 20 <div id="menu"></div> | |
| 21 </div> | |
| 22 | |
| 23 <br/> | |
| 24 | |
| 25 <footer> | |
| 26 <div id="summary"> | |
| 27 <button id="prev">Prev</button> | |
| 28 <button id="next">Next</button> | |
| 29 </div> | |
| 30 <p id="notes"> </p> | |
| 31 </footer> | |
| 32 | |
| 33 <script type="application/dart" src="slider_sample.dart"></script> | |
| 34 <script src="https://dart.googlecode.com/svn/branches/bleeding_edge/dart/cli
ent/dart.js"></script> | |
| 35 </body> | |
| 36 </html> | |
| OLD | NEW |