Skip to content

Commit f229807

Browse files
committed
Tooltip: Move tooltip into widgets directory
1 parent 99308be commit f229807

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

tests/unit/tooltip/common-deprecated.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/tooltip"
3+
"ui/widgets/tooltip"
44
], function( common ) {
55

66
common.testWidget( "tooltip", {

tests/unit/tooltip/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/tooltip"
3+
"ui/widgets/tooltip"
44
], function( common ) {
55

66
common.testWidget( "tooltip", {

tests/unit/tooltip/core.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/tooltip"
3+
"ui/widgets/tooltip"
44
], function( $ ) {
55

66
module( "tooltip: core" );

tests/unit/tooltip/deprecated.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/tooltip"
3+
"ui/widgets/tooltip"
44
], function( $ ) {
55

66
module( "tooltip: (deprecated) options" );

tests/unit/tooltip/events.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/tooltip"
3+
"ui/widgets/tooltip"
44
], function( $ ) {
55

66
module( "tooltip: events" );

tests/unit/tooltip/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/tooltip"
3+
"ui/widgets/tooltip"
44
], function( $ ) {
55

66
module( "tooltip: methods" );

tests/unit/tooltip/options.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/tooltip"
3+
"ui/widgets/tooltip"
44
], function( $ ) {
55

66
module( "tooltip: options" );

ui/tooltip.js renamed to ui/widgets/tooltip.js

Lines changed: 4 additions & 4 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-
"./keycode",
26-
"./unique-id",
27-
"./widget",
28-
"./position"
25+
"../keycode",
26+
"../unique-id",
27+
"../widget",
28+
"../position"
2929
], factory );
3030
} else {
3131

0 commit comments

Comments
 (0)