-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dialog Example</title>
<style type="text/css">
.component {
width: 400px;
height: 200px;
background: #ccc;
}
</style>
</head>
<body>
<div class="component">
<p><a href="#" data-action="unbind">unbind</a></p>
<p><a href="#" data-action="destroy">destroy</a></p>
</div>
<script type="text/javascript" src="components/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="components/chapter-2_voltron/voltron.js"></script>
<script type="text/javascript" src="dialog.js"></script>
<script type="text/javascript">
(function () {
var dialog = new Dialog({
$el: '.component',
events: {
'click [data-action]': function (e) {
var action = $(e.currentTarget).attr('data-action');
e.preventDefault();
this[action]();
}
}
});
})();
</script>
</body>
</html>