aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dialog.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dialog.js')
-rw-r--r--tests/dialog.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/dialog.js b/tests/dialog.js
index 0a70da97e..9e40562e0 100644
--- a/tests/dialog.js
+++ b/tests/dialog.js
@@ -38,13 +38,13 @@ var moved = function (dx, dy, msg) {
}
function shouldmove(why) {
- var handle = $(".ui-dialog-titlebar", el.data("dialog").element);
+ var handle = $(".ui-dialog-titlebar", dlg());
drag(handle, 50, 50);
moved(50, 50, why);
}
function shouldnotmove(why) {
- var handle = $(".ui-dialog-titlebar", el.data("dialog").element);
+ var handle = $(".ui-dialog-titlebar", dlg());
drag(handle, 50, 50);
moved(0, 0, why);
}
@@ -192,6 +192,14 @@ test("buttons", function() {
btn.trigger("click");
});
+test("draggable", function() {
+ el = $("<div/>").dialog({ draggable: false });
+ shouldnotmove();
+ el.remove();
+ el = $("<div/>").dialog({ draggable: true });
+ shouldmove();
+});
+
module("dialog: Methods");
module("dialog: Callbacks");