From 67117bc5639e8544769c4fd75366baaf44dbd9a8 Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Sun, 8 Jun 2008 03:37:43 +0000 Subject: [PATCH] tests dialog - draggable option --- tests/dialog.js | 12 ++++++++++-- 1 file 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 = $("
").dialog({ draggable: false }); + shouldnotmove(); + el.remove(); + el = $("
").dialog({ draggable: true }); + shouldmove(); +}); + module("dialog: Methods"); module("dialog: Callbacks"); -- 2.39.5