mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 03:41:30 +03:00
Fix const values
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
941a6e1c1b
commit
889b90fbc3
1 changed files with 4 additions and 4 deletions
|
@ -29,11 +29,11 @@ import { MatrixClientPeg } from '../../../MatrixClientPeg';
|
|||
import {replaceableComponent} from "../../../utils/replaceableComponent";
|
||||
import { Action } from '../../../dispatcher/actions';
|
||||
|
||||
const PIP_VIEW_WIDTH = 320;
|
||||
const PIP_VIEW_HEIGHT = 180;
|
||||
const PIP_VIEW_WIDTH = 336;
|
||||
const PIP_VIEW_HEIGHT = 232;
|
||||
|
||||
const DEFAULT_X_OFFSET = 64;
|
||||
const DEFAULT_Y_OFFSET = 64;
|
||||
const DEFAULT_X_OFFSET = 16;
|
||||
const DEFAULT_Y_OFFSET = 48;
|
||||
|
||||
const SHOW_CALL_IN_STATES = [
|
||||
CallState.Connected,
|
||||
|
|
Loading…
Reference in a new issue