forked from lionaneesh/News-Local
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNewsLocal.html
44 lines (39 loc) · 1.37 KB
/
NewsLocal.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>NewsLocal</title>
<script type="text/javascript">
/*function callbackForJsonpApi(s) {
window.postMessage(JSON.stringify(s), '*');
}
function callbackForMapsApi(s) {
window.postMessage(JSON.stringify(s), '*');
}*/
function callbackForJsonpApi(s) {
s.target = "dartJsonHandler"
window.postMessage(JSON.stringify(s), '*');
}
function callbackForMapsApi(s) {
s.target = "dartMapsHandler";
window.postMessage(JSON.stringify(s), '*');
}
</script>
<link type="text/css" rel="stylesheet" href="NewsLocal.css">
</head>
<body>
<table>
<tbody>
<tr>
<td rowspan=2><img src="http://code.google.com/p/dart/logo?cct=1334651453" alt="logo"/></td>
<td><h1>News-Local</h1></td>
<a href="http://github.com/blitzmohit/News-Local"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://a248.e.akamai.net/camo.github.com/abad93f42020b733148435e2cd92ce15c542d320/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub"></a>
</tr>
<tr>
<td></td>
</tr>
</tbody>
</table>
<script type="application/dart" src="NewsLocal.dart"></script>
<script src="http://dart.googlecode.com/svn/branches/bleeding_edge/dart/client/dart.js"></script>
</body>
</html>