| 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 | |
| 8 <html> | |
| 9 <head> | |
| 10 <meta charset="utf-8"> | |
| 11 <link href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.
css" | |
| 12 rel="stylesheet"> | |
| 13 <title>Using JSONP with Dart</title> | |
| 14 </head> | |
| 15 <body> | |
| 16 <div class="container"> | |
| 17 <h1>Dart Repos on Github</h1> | |
| 18 | |
| 19 <table id="repo-table" class="table table-bordered table-striped"> | |
| 20 <thead></thead> | |
| 21 <tbody></tbody> | |
| 22 </table> | |
| 23 </div> | |
| 24 <script type="application/dart" src="index.dart"></script> | |
| 25 <script src="packages/browser/dart.js"></script> | |
| 26 <script src="packages/browser/interop.js"></script> | |
| 27 </body> | |
| 28 </html> | |
| OLD | NEW |