-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex6-event.html
More file actions
41 lines (33 loc) · 1.58 KB
/
index6-event.html
File metadata and controls
41 lines (33 loc) · 1.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap-theme.css">
<link rel="stylesheet" href="node_modules/angular-toastr/dist/angular-toastr.css">
<link rel="stylesheet" href="node_modules/angular-ui-grid/ui-grid.css">
<!-- Font Awesome-->
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.css">
<!-- Imports internos -->
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-messages/angular-messages.js"></script>
<script src="node_modules/angular-animate/angular-animate.js"></script>
<script src="node_modules/angular-toastr/dist/angular-toastr.js"></script>
<script src="node_modules/angular-toastr/dist/angular-toastr.tpls.js"></script>
<script src="node_modules/angular-ui-grid/ui-grid.js"></script>
<!-- Imports externos -->
<script src="app/config/pd-app.module.js"></script>
<script src="app/controller/index6.controller.js"></script>
<script src="app/services/pd-alert.services.js"></script>
<script src="app/filters/pd-maiusculas.filter.js"></script>
</head>
<body ng-app="pdCurso" class="container">
<div ng-controller="Index6Controller">
<button ng-click="dispararEvento()">Disparar!</button>
</div>
</body>
</html>