Skip to content

Commit

Permalink
fix vote button getting stuck at opacity 0
Browse files Browse the repository at this point in the history
  • Loading branch information
octatone committed Apr 17, 2012
1 parent 99537d4 commit fd60129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/tv.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ function loadVideo(video) {
var reddit_string = redditButton('t3_' + globals.videos[this_chan].video[selected_video].id);
var $vote_button = $('#vote-button');
$vote_button.stop(true,true).fadeOut('slow', function() {
$vote_button.html(reddit_string).fadeIn('slow');
$vote_button.html(reddit_string).fadeTo('slow', 1);
});

var video_source_text = 'Source: '
Expand Down

0 comments on commit fd60129

Please sign in to comment.