-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·37 lines (30 loc) · 977 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
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MuEmoji</title>
<link rel="stylesheet" type="text/css" href="dist/stylesheets/mumuki-emojis.css">
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" src="//code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body style="width: calc(100% - 12px); display: flex; justify-content: space-between">
<div
class="mu-emoji-dropdown"
data-on-emoji-click="alert">
</div>
<div
class="mu-emoji-dropdown"
data-on-emoji-click="console.log"
data-dropdown-alignment="center">
</div>
<div
class="mu-emoji-dropdown"
data-on-emoji-click="console.log"
data-dropdown-alignment="right">
</div>
<script type="text/javascript" src="dist/javascripts/mumuki-emojis.js"></script>
<script type="text/javascript">
$(document).renderMumukiEmojis();
</script>
</body>
</html>