-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (91 loc) · 6.31 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
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title>y-modal</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.2/normalize.min.css"/>
<link rel="stylesheet" href="modal.css"/>
<script src="https://code.jquery.com/jquery-2.2.2.js"></script>
<script src="modal.js"></script>
</head>
<body>
When a user submits a comment, we will need to refresh the list of comments to include the new one. It makes sense to do all of this logic
in CommentBox since CommentBox owns the state that represents the list of comments. When a user submits a comment, we
will need to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox
since CommentBox
owns the state that represents the list of comments. When a user submits a comment, we will need to refresh the list of
comments to include the new one. It makes sense to do all of this logic in CommentBox since CommentBox owns the state
that represents the list of comments. When a user submits a comment, we will need to refresh the list of comments to
include the new one.
to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox since
CommentBox owns the state that represents the list of comments. 123
When a user submits a comment, we will need to refresh the list of comments to include the new one. It makes sense to do all of this logic
in CommentBox since CommentBox owns the state that represents the list of comments. When a user submits a comment, we
will need to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox
since CommentBox
owns the state that represents the list of comments. When a user submits a comment, we will need to refresh the list of
comments to include the new one. It makes sense to do all of this logic in CommentBox since CommentBox owns the state
that represents the list of comments. When a user submits a comment, we will need to refresh the list of comments to
include the new one.
to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox since
CommentBox owns the state that represents the list of comments. 123
When a user submits a comment, we will need to refresh the list of comments to include the new one. It makes sense to do all of this logic
in CommentBox since CommentBox owns the state that represents the list of comments. When a user submits a comment, we
will need to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox
since CommentBox
owns the state that represents the list of comments. When a user submits a comment, we will need to refresh the list of
comments to include the new one. It makes sense to do all of this logic in CommentBox since CommentBox owns the state
that represents the list of comments. When a user submits a comment, we will need to refresh the list of comments to
include the new one.
to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox since
CommentBox owns the state that represents the list of comments. 123
When a user submits a comment, we will need to refresh the list of comments to include the new one. It makes sense to do all of this logic
in CommentBox since CommentBox owns the state that represents the list of comments. When a user submits a comment, we
will need to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox
since CommentBox
owns the state that represents the list of comments. When a user submits a comment, we will need to refresh the list of
comments to include the new one. It makes sense to do all of this logic in CommentBox since CommentBox owns the state
that represents the list of comments. When a user submits a comment, we will need to refresh the list of comments to
include the new one.
to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox since
CommentBox owns the state that represents the list of comments. 123
When a user submits a comment, we will need to refresh the list of comments to include the new one. It makes sense to do all of this logic
in CommentBox since CommentBox owns the state that represents the list of comments. When a user submits a comment, we
will need to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox
since CommentBox
owns the state that represents the list of comments. When a user submits a comment, we will need to refresh the list of
comments to include the new one. It makes sense to do all of this logic in CommentBox since CommentBox owns the state
that represents the list of comments. When a user submits a comment, we will need to refresh the list of comments to
include the new one.
to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox since
CommentBox owns the state that represents the list of comments. 123
<div class="hidden">
<div class="modal-content">
When a user submits a comment, we will need to refresh the list of comments to include the new one. It makes sense to do all of this logic
in CommentBox since CommentBox owns the state that represents the list of comments. When a user submits a comment, we
will need to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox
since CommentBox
owns the state that represents the list of comments. When a user submits a comment, we will need to refresh the list of
comments to include the new one. It makes sense to do all of this logic in CommentBox since CommentBox owns the state
that represents the list of comments. When a user submits a comment, we will need to refresh the list of comments to
include the new one.
to refresh the list of comments to include the new one. It makes sense to do all of this logic in CommentBox since
CommentBox owns the state that represents the list of comments. 123
</div>
</div>
<div id="content">
<button>КЛИК</button>
</div>
include react
<style>
.hidden { display: none }
</style>
<script>
var modal = new Modal({
content: '.modal-content'
});
$('button').click(function(){
modal.open();
})
</script>
</body>
</html>