UNPKG

999 BJavaScriptView Raw
1export const APPEND = 'append';
2export const APPENDED = 'appended';
3export const PREPEND = 'prepend';
4export const PREPENDED = 'prepended';
5export const BINDED = 'binded';
6export const UNBINDED = 'unbinded';
7export const HIT = 'hit';
8export const TOP = 'top';
9export const LOAD = 'load';
10export const LOADED = 'loaded';
11export const ERROR = 'error';
12export const FIRST = 'first';
13export const LAST = 'last';
14export const NEXT = 'next';
15export const NEXTED = 'nexted';
16export const PREV = 'prev';
17export const PREVED = 'preved';
18export const READY = 'ready';
19export const SCROLLED = 'scrolled';
20export const RESIZED = 'resized';
21export const PAGE = 'page';
22export const PREFILL = 'prefill';
23export const PREFILLED = 'prefilled';
24
25const events = {
26 APPEND,
27 APPENDED,
28 PREPEND,
29 PREPENDED,
30 BINDED,
31 UNBINDED,
32 HIT,
33 TOP,
34 LOAD,
35 LOADED,
36 ERROR,
37 FIRST,
38 LAST,
39 NEXT,
40 NEXTED,
41 PREV,
42 PREVED,
43 READY,
44 SCROLLED,
45 RESIZED,
46 PAGE,
47 PREFILL,
48 PREFILLED,
49};
50
51export default events;