-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (90 loc) · 2.94 KB
/
index.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!--
/*
* Copyright (C) 2023-2024 Reyadeyat
* All Rights Reserved.
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* https://reyadeyat.net/LICENSE/REYADEYAT.LICENSE
*
* This License permits the use, modification, and distribution of the code
* under the terms specified in the License document.
*/
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Haseb Project Test</title>
<script type="module" src="index.js"></script>
<style>
* {
margin: 0;
padding: 0;
}
html, body {
width: 100% !important;
}
.container {
display: flex;
position: relative;
width: 100% !important;
flex-direction: column;
height: 100vh;
max-height: 100vh;
}
.haseb_container {
display: flex;
flex-direction: column;
flex: 1;
flex-grow: 1;
overflow: auto;
background-color: #f0f0f0;
width: 100% !important;
scroll-behavior: smooth;
}
.haseb_container_status_bar {
width: 100% !important;
height: 32px;
max-height: 32px;
min-height: 32px;
}
.disable-select {
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer */
-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
-webkit-user-select: none; /* Chrome, Safari, and Opera */
-webkit-touch-callout: none; /* Disable Android and iOS callouts */
user-select: none; /* Standard syntax */
}
</style>
</head>
<body>
<div id="container" class="container" dir="ltr">
<h1>Welcome to Haseb Project Test</h1>
<div id="haseb_container" class="haseb_container"></div>
<div id="haseb_container_status_bar" class="haseb_container_status_bar"></div>
</div>
<!-- Include the index.js file -->
<script type="module" >
import { Asset } from './asset.js';
import { HasebAnalyticEngine } from './index.js';
debugger;
let haseb_analytic_engine = new HasebAnalyticEngine(Asset.dataset_1);
//let haseb_analytic_engine = new HasebAnalyticEngine(Asset.dataset_2);
let natej = haseb_analytic_engine.processData();
/*class HasebImplementationHTMLElement extends HTMLElement {
constructor() {
}
}
customElements.define('haseb-component', HasebImplementationHTMLElement);
*/
</script>
<!--
<div class="container" dir="rtl">
<h1>Welcome to Haseb Project Test</h1>
<haseb-component id="haseb_container" class="haseb_container"></haseb-component>
</div>
-->
</body>
</html>