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 /ui | |
parent | f1ce6e5de53a9e1f7d2a3d8bc067effe6b028022 (diff) | |
download | jquery-ui-5efa98361e600ad9392297dd8550a873341fb615.tar.gz jquery-ui-5efa98361e600ad9392297dd8550a873341fb615.zip |
Dialog: Move dialog into widgets folder
Ref #13885
Diffstat (limited to 'ui')
-rw-r--r-- | ui/widgets/dialog.js (renamed from ui/dialog.js) | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/ui/dialog.js b/ui/widgets/dialog.js index dc6632973..96e004b6c 100644 --- a/ui/dialog.js +++ b/ui/widgets/dialog.js @@ -22,20 +22,19 @@ // AMD. Register as an anonymous module. define( [ "jquery", - "./core", - "./version", - "./keycode", - "./widget", - "./widgets/button", - "./draggable", - "./focusable", - "./mouse", - "./position", - "./resizable", - "./safe-active-element", - "./safe-blur", - "./tabbable", - "./unique-id" + "./button", + "../mouse", + "../resizable", + "../draggable", + "../focusable", + "../keycode", + "../position", + "../safe-active-element", + "../safe-blur", + "../tabbable", + "../unique-id", + "../version", + "../widget" ], factory ); } else { |