Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | 14x 14x 14x 14x 14x | /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; export const defaultPointerId = 1; export const defaultPointerSize = 23; export const defaultBrowserChromeSize = 50; /** * Button property * This property only guarantees to indicate which buttons are pressed during events caused by pressing or * releasing one or multiple buttons. As such, it is not reliable for events such as 'mouseenter', 'mouseleave', * 'mouseover', 'mouseout' or 'mousemove'. Furthermore, the semantics differ for PointerEvent, where the value * for 'pointermove' will always be -1. */ export const buttonType = { // no change since last event none: -1, // left-mouse // touch contact // pen contact primary: 0, // right-mouse // pen barrel button secondary: 2, // middle mouse auxiliary: 1, // back mouse back: 3, // forward mouse forward: 4, // pen eraser eraser: 5 }; /** * Buttons bitmask */ export const buttonsType = { none: 0, // left-mouse // touch contact // pen contact primary: 1, // right-mouse // pen barrel button secondary: 2, // middle mouse auxiliary: 4, // back mouse back: 8, // forward mouse forward: 16, // pen eraser eraser: 32 }; |