aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/draggable/defaults.js
blob: 46f208f5e316e5ea1289a9a8cf4c497a53fcd6df (plain)
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
/*
 * draggable_defaults.js
 */

var draggable_defaults = {

	appendTo: "parent",

	axis: false,

	cancel: ":input,option",

	connectToSortable: false,

	containment: false,

	cursor: "auto",

	cursorAt: false,

	delay: 0,

	disabled: false,

	distance: 1,

	grid: false,

	handle: false,

	helper: "original",

	iframeFix: false,

	opacity: false,

	refreshPositions: false,

	revert: false,

	revertDuration: 500,

	scroll: true,

	scrollSensitivity: 20,

	scrollSpeed: 20,

	scope: "default",

	snap: false,

	snapMode: "both",

	snapTolerance: 20,

	stack: false,

	zIndex: false

};