Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: sky/examples/city-list/index.sky

Issue 698653002: Add initial SkyElement & city-list example (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: ws Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/examples/city-list/city-sequence.sky ('k') | sky/framework/sky-element/TemplateBinding.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
2 // Copyright 2014 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 -->
6 <!DOCTYPE html>
7 <html>
8 <head>
9 <meta charset="utf-8">
10 <meta name="viewport"
11 content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-sca lable=yes, width=device-width">
12 <link rel="import" href="city-list.sky" />
13 <style>
14 html, body {
15 margin: 0;
16 padding: 0;
17 font-family: "Roboto", "HelveticaNeue",sans-serif;
18 -webkit-font-smoothing: antialiased;
19 font-size: 13px;
20 color: #222;
21 width: 100%;
22 height: 100%;
23 -webkit-user-select: none;
24 }
25 </style>
26 </head>
27 <script>
28 window.startLoad = new Date().getTime();
29 </script>
30 <body>
31 <city-list></city-list>
32 </body>
33 </html>
OLDNEW
« no previous file with comments | « sky/examples/city-list/city-sequence.sky ('k') | sky/framework/sky-element/TemplateBinding.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698