-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmytabset.html
More file actions
49 lines (47 loc) · 1.73 KB
/
mytabset.html
File metadata and controls
49 lines (47 loc) · 1.73 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
45
46
47
48
49
<tabset>
<tab heading="Preview">
<iframe ng-src="{{myPresPreviewURL | trustedURL}}" width="100%" height="1000px" class="frame"> </iframe>
</tab>
<tab heading="Edit" >
<div data-ng-include src="'presentationForm.html'"></div>
</tab>
</tabset>
<!--
<div class="container">
<div id="content">
<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#preview" data-toggle="tab">Preview</a></li>
<li><a href="#edit" data-toggle="tab">Edit</a></li>
</ul>
<div id="my-tab-content" class="tab-content">
<div class="tab-pane active" id="preview">
<h1>Preview</h1>
<p>red red red red red red</p>
<iframe ng-src="{{myPresPreviewURL | trustedURL}}" width="100%" height="1000px" class="frame"> </iframe>
</div>
<div class="tab-pane" id="edit">
<h1>Edit</h1>
<p>orange orange orange orange orange</p>
<div data-ng-include src="'presentationForm.html'"></div>
</div>
</div>
</div>
</div>
-->
<!--
<div class="container-fluid">
<div class="row">
<ul class="nav nav-tabs" id="myTabs">
<li class="active"><a href="#preview" data-toggle="tab">Preview</a></li>
<li><a href="#edit" data-toggle="tab">Edit</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="preview">
<iframe ng-src="{{myPresPreviewURL | trustedURL}}" width="100%" height="1000px"> </iframe>
</div>
<div class="tab-pane" id="edit">
<div data-ng-include src="'presentationForm.html'" class="tab-pane" id="edit"></div>
</div>
</div>
</div>
</div> -->