forked from Enplug/dashboard-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
29 lines (24 loc) · 792 Bytes
/
example.html
File metadata and controls
29 lines (24 loc) · 792 Bytes
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
<!DOCTYPE html>
<html ng-app="example">
<head>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.js"></script>
<script src="dist/sdk.min.js"></script>
<script>
enplug.debug = true;
angular.module('example', ['enplug.sdk']).run(function ($enplugDashboard) {
});
</script>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>Example</h1>
</div>
</div>
<div class="container">
<button class="btn btn-primary">Test</button>
</div>
</body>
</html>