-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackbone-events.html
39 lines (35 loc) · 1.01 KB
/
backbone-events.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Backbone</title>
<!-- === Styles Twitter Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/dashboard.css" rel="stylesheet">
<style>
.slack {
background-color: #563A59;
}
</style>
</head>
<body>
<div class="container">
<p id="test">Hello</p>
</div>
</body>
<!-- === Références aux Frameworks === -->
<script src="js/jquery.js"></script>
<script src="js/underscore.js"></script>
<script src="js/backbone.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- === ici votre code applicatif === -->
<script>
var object = {};
_.extend(object, Backbone.Events);
object.on("alert", function(msg) {
jQuery('#test').append("Backbone Event triggered " + msg);
});
object.trigger("alert", "an event");
</script>
</html>