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
The seating chart looks fine when rendered on mobile, but it does not auto-scale to fit the size of the screen. This makes it very hard to use on a smartphone. It would be nice if the chart would auto-scale to fit its parent container and then also have the ability to zoom in/out to find the specific seats the user wants.
The text was updated successfully, but these errors were encountered:
For what it's worth, we have implemented this by scaling the seatmap-div to the size of the viewport:
scale=Math.min($(window).width()/($('#seatmap').width()+30));//add 30 for margin$('#seatmap').css('transform','scale('+scale+')');$('#seatmap').css('transform-origin','top left');
The seating chart looks fine when rendered on mobile, but it does not auto-scale to fit the size of the screen. This makes it very hard to use on a smartphone. It would be nice if the chart would auto-scale to fit its parent container and then also have the ability to zoom in/out to find the specific seats the user wants.
The text was updated successfully, but these errors were encountered: