diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-07-14 22:05:00 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-08 00:29:38 -0400 |
commit | e59b596141d60b5aff4dbf1c384c62abfcf9c505 (patch) | |
tree | 09769f994aa6a4c9ca6e14e2ca31c4046e0a9119 /ui | |
parent | 5dc88353d49636798e99ae7c276c4a5ec14055d8 (diff) | |
download | jquery-ui-e59b596141d60b5aff4dbf1c384c62abfcf9c505.tar.gz jquery-ui-e59b596141d60b5aff4dbf1c384c62abfcf9c505.zip |
Resizable: Move resizable into widgets folder
Ref #13885
Diffstat (limited to 'ui')
-rw-r--r-- | ui/widgets/dialog.js | 2 | ||||
-rw-r--r-- | ui/widgets/resizable.js (renamed from ui/resizable.js) | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index 88f8c93de..40f6c614f 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -25,7 +25,7 @@ "./button", "./draggable", "./mouse", - "../resizable", + "./resizable", "../focusable", "../keycode", "../position", diff --git a/ui/resizable.js b/ui/widgets/resizable.js index 8513efe81..95cf918d9 100644 --- a/ui/resizable.js +++ b/ui/widgets/resizable.js @@ -22,11 +22,11 @@ // AMD. Register as an anonymous module. define([ "jquery", - "./disable-selection", - "./widgets/mouse", - "./plugin", - "./version", - "./widget" + "./mouse", + "../disable-selection", + "../plugin", + "../version", + "../widget" ], factory ); } else { |