-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 973 Bytes
/
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
<html>
<head>
<meta charset="UTF-8">
<title>ez-key!</title>
<link rel="stylesheet" type="text/css" href="./dist/css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<div id="header">
<h1>EZ KEY</h1>
<div id="toggle-component">
<span id="title">Mac/Win</span>
<div id="toggle-switch"></div>
</div>
</div>
<div id="card">
<div id="headerDiv">
<span id="title" is-init="false">Group 1</span>
</div>
<div id="listDiv">
<!--Auto generated field-->
</div>
</div>
<script>
// You can also require other files to run in this process
require('./renderer.js')
// window.$ = window.jQuery = require('./path/to/jquery');
//
// $('#toogle').on('click', ()=>{
// console.log('!!!!!!!!!!!');
// });
</script>
</body>
</html>