mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-02 05:42:41 +02:00
Reset pinch zoom on click of resource
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import { RoadmapType } from '../../lib/roadmap';
|
import { RoadmapType } from '../../lib/roadmap';
|
||||||
import { Box, SimpleGrid, Tag } from '@chakra-ui/react';
|
import { SimpleGrid, Tag } from '@chakra-ui/react';
|
||||||
import { HomeRoadmapItem } from '../roadmap/home-roadmap-item';
|
import { HomeRoadmapItem } from '../roadmap/home-roadmap-item';
|
||||||
|
|
||||||
type FeaturedRoadmapsListProps = {
|
type FeaturedRoadmapsListProps = {
|
||||||
|
@@ -52,6 +52,11 @@ export function InteractiveRoadmapRenderer(props: RoadmapProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function clickListener(event: MouseEvent) {
|
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 targetGroup = (event?.target as HTMLElement)?.closest('g');
|
||||||
const groupId = targetGroup?.dataset?.groupId;
|
const groupId = targetGroup?.dataset?.groupId;
|
||||||
if (!targetGroup || !groupId) {
|
if (!targetGroup || !groupId) {
|
||||||
|
Reference in New Issue
Block a user