diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-07-14 21:59:40 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-08 00:29:38 -0400 |
commit | 3b2db14b3beb1d5abbb2b9d102b1afa14733fef2 (patch) | |
tree | 37d074ee121a4a711fd4c4802790a2b3460848d0 /ui | |
parent | 5efa98361e600ad9392297dd8550a873341fb615 (diff) | |
download | jquery-ui-3b2db14b3beb1d5abbb2b9d102b1afa14733fef2.tar.gz jquery-ui-3b2db14b3beb1d5abbb2b9d102b1afa14733fef2.zip |
Draggable: Move draggable into widgets folder
Ref #13885
Diffstat (limited to 'ui')
-rw-r--r-- | ui/droppable.js | 2 | ||||
-rw-r--r-- | ui/widgets/dialog.js | 2 | ||||
-rw-r--r-- | ui/widgets/draggable.js (renamed from ui/draggable.js) | 16 |
3 files changed, 10 insertions, 10 deletions
diff --git a/ui/droppable.js b/ui/droppable.js index c6bd35004..ffa1db1c0 100644 --- a/ui/droppable.js +++ b/ui/droppable.js @@ -22,7 +22,7 @@ "./version", "./widget", "./mouse", - "./draggable" + "./widgets/draggable" ], factory ); } else { diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index 96e004b6c..856ad9bb0 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -23,9 +23,9 @@ define( [ "jquery", "./button", + "./draggable", "../mouse", "../resizable", - "../draggable", "../focusable", "../keycode", "../position", diff --git a/ui/draggable.js b/ui/widgets/draggable.js index 007adf58d..e26be73b1 100644 --- a/ui/draggable.js +++ b/ui/widgets/draggable.js @@ -20,14 +20,14 @@ // AMD. Register as an anonymous module. define([ "jquery", - "./data", - "./mouse", - "./plugin", - "./safe-active-element", - "./safe-blur", - "./scroll-parent", - "./version", - "./widget" + "../mouse", + "../data", + "../plugin", + "../safe-active-element", + "../safe-blur", + "../scroll-parent", + "../version", + "../widget" ], factory ); } else { |