-
Notifications
You must be signed in to change notification settings - Fork 0
/
favs.html
21 lines (14 loc) · 821 Bytes
/
favs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="col-xs-12 col-sm-9">
<div class="row" >
<div class="col-xs-6 col-lg-4" ng-repeat="shows in shows">
<h2>{{shows.name}}</h2>
<p><img ng-src={{shows.image.medium}}></p>
<p><a class="btn btn-default" ng-click="add(shows)" role="button">Add to favorite »</a></p>
</div><!--/.col-xs-6.col-lg-4-->
</div><!--/row-->
</div><!--/.col-xs-12.col-sm-9-->
<div class="col-xs-6 col-sm-3 sidebar-offcanvas" id="sidebar">
<div class="list-group" ng-repeat='xx in favs'>
<a ng-click="remove(xx)"href="" class="list-group-item active">{{xx.name}}</a>
</div>
</div><!--/.sidebar-offcanvas-->