Skip to content

Commit

Permalink
Progressbar: Move progressbar into widgets folder
Browse files Browse the repository at this point in the history
Ref #13885
  • Loading branch information
arschmitz committed Aug 8, 2015
1 parent 8140d0c commit 92e2679
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion demos/bootstrap.js
Expand Up @@ -32,7 +32,8 @@ var widgets = [
"dialog", "dialog",
"draggable", "draggable",
"droppable", "droppable",
"menu" "menu",
"progressbar"
]; ];


function getPath( module ) { function getPath( module ) {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/progressbar/common.js
@@ -1,6 +1,6 @@
define( [ define( [
"lib/common", "lib/common",
"ui/progressbar" "ui/widgets/progressbar"
], function( common ) { ], function( common ) {


common.testWidget( "progressbar", { common.testWidget( "progressbar", {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/progressbar/core.js
@@ -1,6 +1,6 @@
define( [ define( [
"jquery", "jquery",
"ui/progressbar" "ui/widgets/progressbar"
], function( $ ) { ], function( $ ) {


module( "progressbar: core" ); module( "progressbar: core" );
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/progressbar/events.js
@@ -1,6 +1,6 @@
define( [ define( [
"jquery", "jquery",
"ui/progressbar" "ui/widgets/progressbar"
], function( $ ) { ], function( $ ) {


module( "progressbar: events" ); module( "progressbar: events" );
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/progressbar/methods.js
@@ -1,6 +1,6 @@
define( [ define( [
"jquery", "jquery",
"ui/progressbar" "ui/widgets/progressbar"
], function( $ ) { ], function( $ ) {


module( "progressbar: methods" ); module( "progressbar: methods" );
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/progressbar/options.js
@@ -1,6 +1,6 @@
define( [ define( [
"jquery", "jquery",
"ui/progressbar" "ui/widgets/progressbar"
], function( $ ) { ], function( $ ) {


module( "progressbar: options" ); module( "progressbar: options" );
Expand Down
4 changes: 2 additions & 2 deletions ui/progressbar.js → ui/widgets/progressbar.js
Expand Up @@ -22,8 +22,8 @@
// AMD. Register as an anonymous module. // AMD. Register as an anonymous module.
define( [ define( [
"jquery", "jquery",
"./version", "../version",
"./widget" "../widget"
], factory ); ], factory );
} else { } else {


Expand Down

0 comments on commit 92e2679

Please sign in to comment.