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

Side by Side Diff: sky/examples/terminal/terminal.sky

Issue 998103002: Fix terminal since sky-* moved. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 months 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 // Copyright 2015 The Chromium Authors. All rights reserved. 2 // Copyright 2015 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 --> 5 -->
6 <import src="/sky/framework/sky-element.sky" /> 6 <import src="/sky/framework/elements/sky-element.sky" />
7 <import src="/sky/framework/sky-scrollable.sky" /> 7 <import src="/sky/framework/elements/sky-scrollable.sky" />
8 <sky-element> 8 <sky-element>
9 <template> 9 <template>
10 <style> 10 <style>
11 #control { 11 #control {
12 height: -webkit-fill-available; 12 height: -webkit-fill-available;
13 background-color: black; 13 background-color: black;
14 color: rgb(255, 191, 0); 14 color: rgb(255, 191, 0);
15 font-family: 'Courier', 'monospace'; 15 font-family: 'Courier', 'monospace';
16 } 16 }
17 span { 17 span {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 106
107 var completer = new Completer<int>(); 107 var completer = new Completer<int>();
108 _readerQueue.add(completer); 108 _readerQueue.add(completer);
109 return completer.future; 109 return completer.future;
110 } 110 }
111 } 111 }
112 112
113 _init(script) => register(script, TerminalDisplayImpl); 113 _init(script) => register(script, TerminalDisplayImpl);
114 </script> 114 </script>
115 </sky-element> 115 </sky-element>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698