-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewEventType.hx
More file actions
35 lines (26 loc) · 869 Bytes
/
ViewEventType.hx
File metadata and controls
35 lines (26 loc) · 869 Bytes
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
package eventtypes;
enum abstract ViewEventType(String) to String {
/**
The fullscreenchange event is fired when the browser is switched
to/out-of fullscreen mode.
See https://developer.mozilla.org/en-US/docs/Web/Events/fullscreenchange
*/
var FullScreenChange = 'fullscreenchange';
/**
The fullscreenerror event is fired when the browser cannot switch to
fullscreen mode.
See https://developer.mozilla.org/en-US/docs/Web/Events/fullscreenerror
*/
var FullScreenError = 'fullscreenerror';
/**
The resize event is fired when the document view has been resized.
See https://developer.mozilla.org/en-US/docs/Web/Events/resize
*/
var Resize = 'resize';
/**
The scroll event is fired when the document view or an element has been
scrolled.
See https://developer.mozilla.org/en-US/docs/Web/Events/scroll
*/
var Scroll = 'scroll';
}