forked from dart-lang/dart-pad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembed-inline.html
More file actions
52 lines (44 loc) · 2.47 KB
/
Copy pathembed-inline.html
File metadata and controls
52 lines (44 loc) · 2.47 KB
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
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<!-- Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file. This version is
not finalized. -->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="scaffolded-by" content="https://github.com/google/stagehand">
<title>DartPad</title>
<script src="packages/dart_pad/bower/webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="scripts/embed_components.html"/>
<link href='text-fonts/inconsolata.css' rel='stylesheet' type='text/css'>
<!--<link href='https://fonts.googleapis.com/css?family=Inconsolata:400,700'
rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">-->
<!-- codemirror -->
<link href="packages/codemirror/css/codemirror.css" rel="stylesheet" media="screen">
<link href="packages/codemirror/addon/lint/lint.css" rel="stylesheet" media="screen">
<link href="packages/codemirror/addon/hint/show-hint.css" rel="stylesheet" media="screen">
<link href="packages/codemirror/theme/zenburn.css" rel="stylesheet" media="screen">
<link href="packages/dart_pad/editing/editor_codemirror.css"
rel="stylesheet" media="screen">
<script src="packages/codemirror/codemirror.js" defer></script>
<script src="scripts/embed.dart.js" defer></script>
<script src="scripts/ga.js" defer></script>
<script src="scripts/polymerpatch.js" defer></script>
</head>
<body class="fullbleed vertical layout" unresolved>
<div id="main" class="relative layout vertical">
<paper-progress id="run-progress" class="bottom fit" hidden></paper-progress>
<dartpad-buttons></dartpad-buttons>
<dartpad-editor id="topPanel" dart class="layout vertical"></dartpad-editor>
<horizontal-splitter class="splitter" horizontal></horizontal-splitter>
<dartpad-console id='bottomPanel' class="flex layout vertical"></dartpad-console>
</div>
<paper-toast id="errorToast" text=""></paper-toast>
<dartpad-dom-output hidden class="flex"></dartpad-dom-output>
</body>
</html>