Commit ddbe93cb11e29b782da1af623e0949ada0db39a5
Exists in
master
and in
6 other branches
Merge branch 'fix-issues'
Showing
4 changed files
with
5 additions
and
7 deletions
Show diff stats
src/app/components/article-service/article.service.js
| ... | ... | @@ -190,7 +190,7 @@ |
| 190 | 190 | |
| 191 | 191 | var url = service.apiCommunities + community_id + '/articles'; |
| 192 | 192 | var paramsExtended = angular.extend({ |
| 193 | - // 'fields[]': ['id', 'title', 'abstract', 'body', 'categories', 'created_at', 'start_date', 'end_date', 'followers_count', 'image', 'url'], | |
| 193 | + 'fields[]': ['id', 'title', 'abstract', 'body', 'setting', 'presenter', 'created_at', 'update_at', 'start_date', 'end_date', 'followers_count', 'image', 'url'], | |
| 194 | 194 | 'content_type':'Event' |
| 195 | 195 | }, params); |
| 196 | 196 | ... | ... |
src/app/components/event-list/event-list.scss
src/app/pages/inicio/inicio.html
| ... | ... | @@ -22,15 +22,13 @@ |
| 22 | 22 | </div> |
| 23 | 23 | <div class="col-md-4" ng-if="pageInicio.featuredEvent"> |
| 24 | 24 | <div class="row"> |
| 25 | - <div class="featured-event--box"> | |
| 25 | + <div class="featured-event--box" ng-click="pageInicio.showEventVideo()"> | |
| 26 | 26 | <div class="box-top col-xs-12 col-sm-4 col-md-12"> |
| 27 | 27 | <h2 class="box-title">Bate papo com <b>MINISTROS/AS</b></h2> |
| 28 | 28 | </div> |
| 29 | 29 | <div class="box-middle col-xs-12 col-sm-4 col-md-12"> |
| 30 | 30 | <div class="video" |
| 31 | - ng-style="{'background-image': 'url(' + pageInicio.featuredEvent.image.url + ')'}" | |
| 32 | - ng-click="pageInicio.showEventVideo()" | |
| 33 | - > | |
| 31 | + ng-style="{'background-image': 'url(' + pageInicio.featuredEvent.image.url + ')'}"> | |
| 34 | 32 | </div> |
| 35 | 33 | </div> |
| 36 | 34 | <div class="box-bottom col-xs-12 col-sm-4 col-md-12"> | ... | ... |
src/app/pages/inicio/inicio.scss
| ... | ... | @@ -35,6 +35,7 @@ |
| 35 | 35 | background-color: #545454; |
| 36 | 36 | color: #fff; |
| 37 | 37 | border-radius: 5px; |
| 38 | + cursor: pointer; | |
| 38 | 39 | |
| 39 | 40 | .box-top { |
| 40 | 41 | text-transform: uppercase; |
| ... | ... | @@ -53,7 +54,6 @@ |
| 53 | 54 | padding: 0; |
| 54 | 55 | |
| 55 | 56 | .video { |
| 56 | - cursor: pointer; | |
| 57 | 57 | width: 100%; |
| 58 | 58 | min-height: 125px; |
| 59 | 59 | background-size: cover; | ... | ... |