wimbarelds / TimeCircles

jQuery plugin to show time since or time until a specific time
295 stars 149 forks source link

Not responsive & thus scalable #114

Open rinus2107 opened 8 years ago

rinus2107 commented 8 years ago

Hi, i've tried using percentages for the width and height, but the timer isn't responsive to window changes. What am i doing wrong?

wimbarelds commented 8 years ago

You'll need to set it to resize when your browser window resizes.

$(window).on('resize', function(){
    $('#YourTimer').TimeCircles().rebuild();
});