-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
241b343
commit 2119c4f
Showing
1 changed file
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
<ul class="nav nav-tabs" role="tablist"> | ||
<!-- GMA SDK v11 Tab --> | ||
<li class="nav-item ui-tab" role="presentation"> | ||
<button class="nav-link active" id="gma11-tab" data-toggle="tab" data-target="#gma11" type="button" role="tab" aria-controls="gma11" aria-selected="true">GMA SDK v11</button> | ||
<button class="nav-link active" id="{{ include.id }}-gma11-tab" data-toggle="tab" data-target="#{{ include.id }}-gma11" type="button" role="tab" aria-controls="gma11" aria-selected="true">GMA SDK v11</button> | ||
</li> | ||
<!-- GMA SDK v12 Tab --> | ||
<li class="nav-item ui-tab" role="presentation"> | ||
<button class="nav-link" id="gma12-tab" data-toggle="tab" data-target="#gma12" type="button" role="tab" aria-controls="gma12" aria-selected="false">GMA SDK v12</button> | ||
<button class="nav-link" id="{{ include.id }}-gma12-tab" data-toggle="tab" data-target="#{{ include.id }}-gma12" type="button" role="tab" aria-controls="gma12" aria-selected="false">GMA SDK v12</button> | ||
</li> | ||
</ul> | ||
|
||
<div class="tab-content" id="gma-sdk-tab-content"> | ||
<!-- GMA SDK v11 Content --> | ||
<div class="tab-pane fade show active" id="gma11" role="tabpanel" aria-labelledby="gma11-tab"> | ||
<div class="tab-pane fade show active" id="{{ include.id }}-gma11" role="tabpanel" aria-labelledby="{{ include.id }}-gma11-tab"> | ||
<div class="highlight"> | ||
<pre class="highlight language-swift"><code class="language-swift">{{ include.gma11.content | xml_escape }}</code></pre> | ||
<pre class="highlight"><code>{{ include.gma11 | xml_escape }}</code></pre> | ||
</div> | ||
</div> | ||
|
||
<!-- GMA SDK v12 Content --> | ||
<div class="tab-pane fade" id="gma12" role="tabpanel" aria-labelledby="gma12-tab"> | ||
<div class="tab-pane fade" id="{{ include.id }}-gma12" role="tabpanel" aria-labelledby="{{ include.id }}-gma12-tab"> | ||
<div class="highlight"> | ||
<pre class="highlight language-swift"><code class="language-swift">{{ include.gma12.content | xml_escape }}</code></pre> | ||
<pre class="highlight language-swift"><code class="language-swift">{{ include.gma12 | xml_escape }}</code></pre> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|