Skip to content

Instantly share code, notes, and snippets.

@davoclavo
Created November 13, 2012 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davoclavo/4067676 to your computer and use it in GitHub Desktop.
Save davoclavo/4067676 to your computer and use it in GitHub Desktop.
bandtastic moving_container fix

El #moving_container tiene un pequeño offset cuando scrolleas, cambien la línea 726 del cover_bundle_js.js

De:

var starting_point = $timer.height() + $timer.offset().top - 20;

A:

var starting_point = $timer.height() + $timer.offset().top - 10;

y listo!

@grillermo
Copy link

Nice, gracias, ese valor fue a ojo de buen cubero, thx!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment