-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
46 lines (30 loc) · 937 Bytes
/
test.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="build/build.css" />
<style>
</style>
</head>
<body>
<div id="container">
<div id="column1">
Column 1
</div>
<div id="column2">
Column 2
</div>
<div id="column3">
Column 3
</div>
<div id="column4" data-default-content="true">
Column 4
</div>
</div>
<script src="build/build.js"></script>
<script>
var contentSwitch = require('contentSwitch')
, content = contentSwitch(document.getElementById('container'))
;
</script>
</body>
</html>