summaryrefslogtreecommitdiffstats
path: root/app/comp-fe/catalog.html
diff options
context:
space:
mode:
authorEran (ev672n), Vosk <ev672n@att.com>2018-08-07 14:15:05 +0300
committerEran (ev672n), Vosk <ev672n@att.com>2018-08-07 14:15:05 +0300
commitb9708a7c3cfaf5767992a2b15180e7b85c459242 (patch)
tree076e19ea52232232e9060a9d7e074947a4a49508 /app/comp-fe/catalog.html
parentcc32bd38d72e5c1c92048657083952d3e45c1819 (diff)
adding the dcae dt code
Adding DCAE-dt code Change-Id: Id6b779db9d24e10825fb97ad5fd46f41e65e6738 Issue-ID: SDC-1614 Signed-off-by: Eran (ev672n), Vosk <ev672n@att.com>
Diffstat (limited to 'app/comp-fe/catalog.html')
-rw-r--r--app/comp-fe/catalog.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/app/comp-fe/catalog.html b/app/comp-fe/catalog.html
new file mode 100644
index 0000000..f0d80b2
--- /dev/null
+++ b/app/comp-fe/catalog.html
@@ -0,0 +1,57 @@
+<html>
+
+<head>
+ <link rel="stylesheet" href="ice.css">
+ <link rel="stylesheet" href="catalog.css">
+ <style type="text/css">
+ #catalogdiv {
+ transform: scale(.7);
+ }
+ </style>
+ <!--<script type="text/javascript" src="js/underscore-min.js"></script>
+ <script type="text/javascript" src="js/d3.min.js"></script>
+ <script type="text/javascript" src="js/react.min.js"></script>-->
+ <script src="catalog.js"></script>
+</head>
+
+<body>
+ <script type="text/javascript">
+ setTimeout(function () {
+ sbox = document.getElementById('searchbox');
+ sbox.onkeypress = function (e) {
+ if (!e) e = window.event;
+ var keyCode = e.keyCode || e.which;
+ if (keyCode == '13') {
+ dosearch(sbox.value);
+ return false;
+ }
+ };
+
+ }, 1000);
+ </script>
+ <div id=catalogdiv>
+ <div id=search>
+ <div id=searchfield>
+ catalog search<br>
+ <input id=searchbox size=35 oninput="dosearch" value=".*">
+ </div>
+ <div id="searchitems"></div>
+ </div>
+ <br style="clear:both" />
+ <div id="catalog">
+ <div id="catalogitemlist">
+ </div>
+
+ </div>
+ </div>
+
+ <div id="dragdiv">
+ <div id="dragtext"></div>
+ <div id="innerdragdiv"> </div>
+ </div>
+ <!-- i am going to hell when i die -->
+ <div id="dragcover"> </div>
+ </div>
+</body>
+
+</html>