mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-30 12:40:03 +02:00
Fix pinch zoom not working on resources
This commit is contained in:
@@ -53,11 +53,6 @@ export function InteractiveRoadmapRenderer(props: RoadmapProps) {
|
||||
}
|
||||
|
||||
function clickListener(event: MouseEvent) {
|
||||
const viewPortMeta = document.querySelector('meta[name=viewport]');
|
||||
if (viewPortMeta) {
|
||||
viewPortMeta.setAttribute('content', "initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0");
|
||||
}
|
||||
|
||||
const targetGroup = (event?.target as HTMLElement)?.closest('g');
|
||||
const groupId = targetGroup?.dataset?.groupId;
|
||||
if (!targetGroup || !groupId) {
|
||||
|
Reference in New Issue
Block a user