Skip to content

Commit

Permalink
Changed so that the age range (#1) is displayed on a new line. Possib…
Browse files Browse the repository at this point in the history
…ly show the director (#12) on this line as well?
  • Loading branch information
jshearer committed Aug 1, 2014
1 parent 56b52a6 commit 553ae2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/views/app/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<span ng-if="result.selected_video.origin_country.length > 0">{{result.selected_video.origin_country[0]}}</span>
<span style="font-weight: bold; margin-left: 10px;">{{result.selected_video.released_year}}</span>
<span ng-if="result.selected_video.audio_language.length > 0" style="margin-left: 10px">{{result.selected_video.audio_language[0]}}</span>
<span style="font-weight: bold; margin-left: 10px;">Ages: {{result.selected_video.age_range}}</span>
<br>
<span style="font-weight: bold">Ages: {{result.selected_video.age_range}}</span>
</div>
<div style="margin: 5px 9px 0px 9px; height: 95px; width: 288px;" class="scrollable">
<div ng-bind-html="result.selected_video.description">
Expand Down

1 comment on commit 553ae2d

@jshearer
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

First way:
Option 1
Second way:
Option 2

Please sign in to comment.