We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69e66ea commit c218beeCopy full SHA for c218bee
Gruntfile.js
@@ -7,18 +7,18 @@ var
7
coreFiles = [
8
"core.js",
9
"widget.js",
10
- "mouse.js",
11
- "draggable.js",
12
- "droppable.js",
13
- "resizable.js",
14
- "selectable.js",
15
- "sortable.js",
+ "widgets/mouse.js",
+ "widgets/draggable.js",
+ "widgets/droppable.js",
+ "widgets/resizable.js",
+ "widgets/selectable.js",
+ "widgets/sortable.js",
16
"effect.js"
17
],
18
19
uiFiles = coreFiles.map(function( file ) {
20
return "ui/" + file;
21
- }).concat( expandFiles( "ui/*.js" ).filter(function( file ) {
+ }).concat( expandFiles( "ui/**/*.js" ).filter(function( file ) {
22
return coreFiles.indexOf( file.substring( 3 ) ) === -1;
23
}) ),
24
0 commit comments