Skip to content

Commit

Permalink
Fixed a tiny bug in movie details.
Browse files Browse the repository at this point in the history
  • Loading branch information
Patineta committed Mar 8, 2014
1 parent d855ed8 commit bda3a6e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -1423,6 +1423,7 @@ sidebar .play .movie-detail .poster-cont .movie-config .quality-cont {
margin-left: 1px;
text-shadow: 0 0 2px #000;
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
-webkit-transform: translateZ(0);
}
sidebar .play .movie-detail .poster-cont .movie-config .quality-cont .quality-off {
margin-left: 10px;
Expand Down
3 changes: 3 additions & 0 deletions js/frontend/views/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ App.View.Sidebar = Backbone.View.extend({
$('.popcorn-load .progressinfo').text(bufferStatus);
}
);

userTracking.pageview('/movies/watch/'+ this.model.get('imdb'), 'Buffering '+this.model.get('title') +' ('+this.model.get('year')+')' ).send();

},

initialize: function () {
Expand Down
1 change: 1 addition & 0 deletions sass/_moviedetails.scss
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ sidebar {
margin-left:1px;
text-shadow: 0 0 2px #000;
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
-webkit-transform: translateZ(0);

.quality-off {
margin-left: 10px;
Expand Down

0 comments on commit bda3a6e

Please sign in to comment.