-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 708 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (22 loc) · 708 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timepicker Test</title>
<link rel="stylesheet" href="timepicker.css">
</head>
<body>
<input type="text" id="time" name="time" value="10:17 PM">
<script type="module">
import Timepicker from './timepicker.js';
window.timepicker = new Timepicker("#time",{
am_pm: true,
disabled: false,
custom_classes: {
selectors: "table",
}
});
</script>
</body>
</html>