-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathweb-cli.html
More file actions
29 lines (25 loc) · 823 Bytes
/
web-cli.html
File metadata and controls
29 lines (25 loc) · 823 Bytes
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
<link rel="import" href="../polymer/polymer.html">
<link rel="stylesheet" href="../acli/lib/acli.css">
<dom-module id="web-cli">
<template>
<style>
:host {
position: relative;
font-family: courier;
font-size: 0.9em;
margin: 0;
color: #3d3d3d;
display: block;
height: 100%;
}
</style>
<div class="cli-control"></div>
</template>
<script src="../jquery/dist/jquery.min.js"></script>
<script src="../jquery-ui/jquery-ui.min.js"></script>
<script src="../underscore/underscore-min.js"></script>
<script src="../query-object/query-object.js"></script>
<script src="../urijs/src/URI.min.js"></script>
<script src="../acli/lib/acli.js"></script>
<script src="component.js"></script>
</dom-module>