-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Expand file tree
/
Copy pathdialog_common_deprecated.js
More file actions
56 lines (55 loc) · 1.1 KB
/
dialog_common_deprecated.js
File metadata and controls
56 lines (55 loc) · 1.1 KB
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
TestHelpers.commonWidgetTests( "dialog", {
defaults: {
appendTo: "body",
autoOpen: true,
buttons: [],
classes: {
"ui-dialog": "ui-corner-all",
"ui-dialog-content": null,
"ui-dialog-titlebar": "ui-corner-all",
"ui-dialog-titlebar-close": null,
"ui-dialog-title": null,
"ui-dialog-buttons": null,
"ui-dialog-buttonpane": null,
"ui-dialog-buttonset": null,
"ui-dialog-dragging": null,
"ui-dialog-resizing": null,
"ui-widget-overlay": null
},
closeOnEscape: true,
closeText: "close",
dialogClass: "",
disabled: false,
draggable: true,
height: "auto",
hide: null,
maxHeight: null,
maxWidth: null,
minHeight: 150,
minWidth: 150,
modal: false,
position: {
my: "center",
at: "center",
of: window,
collision: "fit",
using: $.ui.dialog.prototype.options.position.using
},
resizable: true,
show: null,
title: null,
width: 300,
// callbacks
beforeClose: null,
close: null,
create: null,
drag: null,
dragStart: null,
dragStop: null,
focus: null,
open: null,
resize: null,
resizeStart: null,
resizeStop: null
}
});