OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 5 BSD-style license that can be found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <html> | 8 <html> |
9 <head> | 9 <head> |
10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
11 <link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.c
ss" | 11 <link href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.
css" |
12 rel="stylesheet"> | 12 rel="stylesheet"> |
13 <title>Using JSONP with Dart</title> | 13 <title>Using JSONP with Dart</title> |
14 </head> | 14 </head> |
15 <body> | 15 <body> |
16 <div class="container"> | 16 <div class="container"> |
17 <h1>Dart Repos on Github</h1> | 17 <h1>Dart Repos on Github</h1> |
18 | 18 |
19 <table id="repo-table" class="table table-bordered table-striped"> | 19 <table id="repo-table" class="table table-bordered table-striped"> |
20 <thead></thead> | 20 <thead></thead> |
21 <tbody></tbody> | 21 <tbody></tbody> |
22 </table> | 22 </table> |
23 </div> | 23 </div> |
24 <script type="application/dart" src="index.dart"></script> | 24 <script type="application/dart" src="index.dart"></script> |
25 <script src="packages/browser/dart.js"></script> | 25 <script src="packages/browser/dart.js"></script> |
26 <script src="packages/browser/interop.js"></script> | 26 <script src="packages/browser/interop.js"></script> |
27 </body> | 27 </body> |
28 </html> | 28 </html> |
OLD | NEW |