Skip to content

Commit

Permalink
removing active assignment for tab
Browse files Browse the repository at this point in the history
  • Loading branch information
ravibail committed Aug 25, 2017
1 parent 5ef3145 commit d75bff1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/app/templates/linkfile-popup.html
Expand Up @@ -8,7 +8,7 @@ <h4>File to be played in the {{selectedZone}} zone
<div class="modal-body">
<div class="panel-body">
<tabset>
<tab index="0" heading="Assets" active="tabIndex == 0" ng-click="changeTab($index)">
<tab index="0" heading="Assets">
<ul class="list-group">
<li class="list-group-item list-group-item-info">
<input type="text" placeholder="Filter by Name" ng-model="search" class="form-control"/>
Expand Down Expand Up @@ -37,7 +37,7 @@ <h4 class="media-heading">&nbsp;{{file.fileDetails.name}}</h4>
</li>
</ul>
</tab>
<tab index="1" heading="Playlists(needs 1.7.0)" active="tabIndex == 1" ng-click="changeTab($index)">
<tab index="1" heading="Playlists(needs 1.7.0)">
<ul class="list-group">
<li class="list-group-item list-group-item-info">
<input type="text" placeholder="{{'Filter by Name' }}" ng-model="search" class="form-control"/>
Expand Down
4 changes: 2 additions & 2 deletions public/app/templates/linkfile-popup.jade
Expand Up @@ -5,7 +5,7 @@
.modal-body
.panel-body
tabset
tab(index="0",heading='Assets',active="tabIndex == 0",ng-click="changeTab($index)")
tab(index="0",heading='Assets')
ul.list-group
li.list-group-item.list-group-item-info
input.form-control(type="text",placeholder="Filter by Name",ng-model="search")
Expand Down Expand Up @@ -43,7 +43,7 @@



tab(index="1",heading='Playlists(needs 1.7.0)',active="tabIndex == 1",ng-click="changeTab($index)")
tab(index="1",heading='Playlists(needs 1.7.0)')
ul.list-group
li.list-group-item.list-group-item-info
input.form-control(type="text",placeholder="{{'Filter by Name' }}",ng-model="search")
Expand Down

0 comments on commit d75bff1

Please sign in to comment.