diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-07-14 21:59:10 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-08 00:29:37 -0400 |
commit | 5efa98361e600ad9392297dd8550a873341fb615 (patch) | |
tree | 3080d3baf86edb6f109ff8e511c85d0dff8339a7 /tests | |
parent | f1ce6e5de53a9e1f7d2a3d8bc067effe6b028022 (diff) | |
download | jquery-ui-5efa98361e600ad9392297dd8550a873341fb615.tar.gz jquery-ui-5efa98361e600ad9392297dd8550a873341fb615.zip |
Dialog: Move dialog into widgets folder
Ref #13885
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/dialog/common-deprecated.js | 2 | ||||
-rw-r--r-- | tests/unit/dialog/common.js | 2 | ||||
-rw-r--r-- | tests/unit/dialog/core.js | 2 | ||||
-rw-r--r-- | tests/unit/dialog/deprecated.js | 2 | ||||
-rw-r--r-- | tests/unit/dialog/events.js | 2 | ||||
-rw-r--r-- | tests/unit/dialog/helper.js | 2 | ||||
-rw-r--r-- | tests/unit/dialog/methods.js | 2 | ||||
-rw-r--r-- | tests/unit/dialog/options.js | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/tests/unit/dialog/common-deprecated.js b/tests/unit/dialog/common-deprecated.js index 7b0091277..69153039c 100644 --- a/tests/unit/dialog/common-deprecated.js +++ b/tests/unit/dialog/common-deprecated.js @@ -1,6 +1,6 @@ define( [ "lib/common", - "ui/dialog" + "ui/widgets/dialog" ], function( common ) { common.testWidget( "dialog", { diff --git a/tests/unit/dialog/common.js b/tests/unit/dialog/common.js index 389b2ddff..8722d1753 100644 --- a/tests/unit/dialog/common.js +++ b/tests/unit/dialog/common.js @@ -1,6 +1,6 @@ define( [ "lib/common", - "ui/dialog" + "ui/widgets/dialog" ], function( common ) { common.testWidget( "dialog", { diff --git a/tests/unit/dialog/core.js b/tests/unit/dialog/core.js index 770d9f543..1560c34ac 100644 --- a/tests/unit/dialog/core.js +++ b/tests/unit/dialog/core.js @@ -1,6 +1,6 @@ define( [ "jquery", - "ui/dialog" + "ui/widgets/dialog" ], function( $ ) { // TODO add teardown callback to remove dialogs diff --git a/tests/unit/dialog/deprecated.js b/tests/unit/dialog/deprecated.js index 1f7087c57..2d75cad0d 100644 --- a/tests/unit/dialog/deprecated.js +++ b/tests/unit/dialog/deprecated.js @@ -1,6 +1,6 @@ define( [ "jquery", - "ui/dialog" + "ui/widgets/dialog" ], function( $ ) { module( "dialog (deprecated): options" ); diff --git a/tests/unit/dialog/events.js b/tests/unit/dialog/events.js index 0e48b7afa..13c452501 100644 --- a/tests/unit/dialog/events.js +++ b/tests/unit/dialog/events.js @@ -1,7 +1,7 @@ define( [ "jquery", "./helper", - "ui/dialog" + "ui/widgets/dialog" ], function( $, testHelper ) { module("dialog: events"); diff --git a/tests/unit/dialog/helper.js b/tests/unit/dialog/helper.js index f84d1d624..87ca9c172 100644 --- a/tests/unit/dialog/helper.js +++ b/tests/unit/dialog/helper.js @@ -1,7 +1,7 @@ define( [ "jquery", "lib/helper", - "ui/dialog" + "ui/widgets/dialog" ], function( $, helper ) { return $.extend( helper, { diff --git a/tests/unit/dialog/methods.js b/tests/unit/dialog/methods.js index cee0cd3a7..a730350b1 100644 --- a/tests/unit/dialog/methods.js +++ b/tests/unit/dialog/methods.js @@ -1,6 +1,6 @@ define( [ "jquery", - "ui/dialog" + "ui/widgets/dialog" ], function( $ ) { module("dialog: methods", { diff --git a/tests/unit/dialog/options.js b/tests/unit/dialog/options.js index 6de336fd6..ea0885de9 100644 --- a/tests/unit/dialog/options.js +++ b/tests/unit/dialog/options.js @@ -1,7 +1,7 @@ define( [ "jquery", "./helper", - "ui/dialog", + "ui/widgets/dialog", "ui/effect-blind", "ui/effect-explode" ], function( $, testHelper ) { |