Skip to content

Commit

Permalink
fix FF 24 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhellsing committed Oct 9, 2013
1 parent 7a3a21b commit e3c44be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/galleria.js
Original file line number Diff line number Diff line change
Expand Up @@ -1288,7 +1288,10 @@ Galleria = window.Galleria = function() {
return;
}

self.$( 'thumbnails' ).css('left', 0); // FF 24 bug
// FF 24 bug
self.$( 'thumbnails' ).css('left', function() {
return $(this).css('left');
});

Utils.animate(self.get( 'thumbnails' ), {
left: num
Expand Down

0 comments on commit e3c44be

Please sign in to comment.