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