Skip to content

Commit

Permalink
Fix conflict for channel button improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeschwartz committed Oct 13, 2015
1 parent 349729a commit c0647df
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/assets/js/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,8 @@ app.hookupSteps = function() {
app.scrollToElement($('#step1'));
});

$('.publisher:not(.soon)').on('click', function(event) {
$('.publisher')
.removeClass('selected')
.removeClass('is-active');
$('.publisher:not(.soon)').on('mouseover', function(event) {
$('.publisher').removeClass('is-active');

var $publisher = $(event.currentTarget);
$publisher.addClass('is-active');
Expand Down

0 comments on commit c0647df

Please sign in to comment.