-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·31 lines (31 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Infinite Scroll</title>
<meta content='InfiniteScroll' name='InfiniteScroll'/>
<meta name="description" content="Infinitely Scrolling Message List" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="dist/app.css">
</head>
<body>
<header id="header">
<span>|||</span> Messages
</header>
<div id="root">
<div id="container">
<div id="content"></div>
<div id="loader" class="dummy"></div>
</div>
</div>
<div id="place-holder" class="dummy"></div>
<script type="text/javascript" src="dist/infiniteScroll.js"></script>
<script>
window.addEventListener('load', () => {
window._IS.init(); // Takes default props or else can be extended with { limit : pagelength }, { api : apiPath }
});
</script>
</body>
</html>