Skip to content

Commit cac7dc9

Browse files
committed
Resizable: Move resizable into widgets folder
1 parent 3d214ed commit cac7dc9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

tests/unit/resizable/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
define( [
22
"lib/common",
3-
"ui/resizable"
3+
"ui/widgets/resizable"
44
], function( common ) {
55

66
common.testWidget( "resizable", {

tests/unit/resizable/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define( [
22
"jquery",
33
"./helper",
4-
"ui/resizable"
4+
"ui/widgets/resizable"
55
], function( $, testHelper ) {
66

77
module("resizable: core");

tests/unit/resizable/events.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define( [
22
"jquery",
33
"./helper",
4-
"ui/resizable"
4+
"ui/widgets/resizable"
55
], function( $, testHelper ) {
66

77
module("resizable: events");

tests/unit/resizable/methods.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
define( [
22
"jquery",
3-
"ui/resizable"
3+
"ui/widgets/resizable"
44
], function( $ ) {
55

66
module( "resizable: methods" );

tests/unit/resizable/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
define( [
22
"jquery",
33
"./helper",
4-
"ui/resizable"
4+
"ui/widgets/resizable"
55
], function( $, testHelper ) {
66

77
module("resizable: options");

ui/resizable.js renamed to ui/widgets/resizable.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
// AMD. Register as an anonymous module.
2323
define([
2424
"jquery",
25-
"./disable-selection",
26-
"./plugin",
25+
"../disable-selection",
26+
"../plugin",
2727
"./mouse",
28-
"./widget"
28+
"../widget"
2929
], factory );
3030
} else {
3131

0 commit comments

Comments
 (0)