Enable zoom by default

This commit is contained in:
Przemek Wiech 2020-03-18 23:31:21 +01:00
parent 5aebf3c7f4
commit 8b3815550b

View File

@ -225,7 +225,7 @@ function getArguments(location: H.Location<any>): Arguments {
gedcom: location.state && location.state.data,
images: location.state && location.state.images,
enableZoom: getParam('enableZoom') === 'true', // False by default.
enableZoom: getParam('enableZoom') !== 'false', // True by default.
};
}