You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Content gets cut and bottom white spaces appears when you resize your browser to a point when vertical scrollbar appears. Or if you open it with a phone or tablet.
The text was updated successfully, but these errors were encountered:
This is becoz the canvas keep using the initial circle width for redrawing the circle on resize. Add the redrawCircles function and replace the updateCircles by this new function in responsive().
functionresponsive(){$(window).load(updateCircles);$(window).on('redraw',function(){switched=false;updateCircles();});// Instead of update the circle directly,// call redrawCircle to get the updated width before drawing// $(window).on('resize', updateCircles);$(window).on('resize',redrawCircles);}functionredrawCircles(){prepareCounters();updateCircles();}
Content gets cut and bottom white spaces appears when you resize your browser to a point when vertical scrollbar appears. Or if you open it with a phone or tablet.
The text was updated successfully, but these errors were encountered: