14 lines
418 B
TypeScript
14 lines
418 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const GALLERY_FOOTER_HEIGHT = 75;
|
|
export const VIDEO_INSET = 100;
|
|
export const ANDROID_VIDEO_INSET = 20;
|
|
|
|
export const DOUBLE_TAP_SCALE = 4;
|
|
export const MAX_SCALE = 7;
|
|
export const MIN_SCALE = 0.7;
|
|
export const OVER_SCALE = 0.5;
|
|
|
|
export const MIN_VELOCITY = 700;
|
|
export const MAX_VELOCITY = 3000;
|