| 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>Contacts</title> | |
| 11 <link rel="stylesheet" href="contactifier.css"> | |
| 12 </head> | |
| 13 <body> | |
| 14 | |
| 15 <div id="header"> | |
| 16 <h1>Contactifier</h1> | |
| 17 <h3>A ShadowDOM-encapsulated contacts widget</h3> | |
| 18 </div> | |
| 19 | |
| 20 <div id="contactsWidget"> | |
| 21 <span class="siteName"></span> | |
| 22 </div> | |
| 23 | |
| 24 <script type="application/dart" src="contactifier.dart"></script> | |
| 25 <script type="application/javascript" src="http://dart.googlecode.com/svn/br
anches/bleeding_edge/dart/client/dart.js"></script> | |
| 26 | |
| 27 </body> | |
| 28 </html> | |
| OLD | NEW |