forked from bruno-brant/angularjs-tableau
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
44 lines (37 loc) · 1.88 KB
/
Copy pathtest.html
File metadata and controls
44 lines (37 loc) · 1.88 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
42
43
44
<!DOCTYPE html>
<html>
<head>
<!-- Make sure the browser respect the file format -->
<meta charset="UTF-8">
<!-- Ensure proper rendering and touch zooming -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery is required by Bootstrap; Avoid using with Angular -->
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css" integrity="sha384-aUGj/X2zp5rLCbBxumKTCw2Z50WgIr1vs/PFN4praOTvYXWlVyh2UtNUU0KAUhAX" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
<!-- Angular JS for small testing -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.js"></script>
<!-- custom script for testing -->
<script src="module.js" type="text/javascript"></script>
</head>
<body ng-app="tableau-api-test">
<h1>Teste de Formatação do Bootstrap e iFrame</h1>
<div class="container-fluid" >
<div class="row" ng-controller="ControllerReport1">
<div class="col-xs-12">
<ps-tableau-report reportId="report1" />
</div>
</div>
<!-- Uncommet below to see the second report -->
<!-- <div class="row">
<div class="col-xs-12" ng-controller="ControllerReport2">
<ps-tableau-report reportId="report2" />
</div>
</div> -->
</div>
</body>
</html>