Skip to content

Commit 02db8f9

Browse files
committed
fix javascript file reference
1 parent 5d3714f commit 02db8f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

fileupload/static/js/jquery.fileupload-fp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
'jquery',
2121
'load-image',
2222
'canvas-to-blob',
23-
'./jquery.fileupload'
23+
'./jquery.fileupload.js'
2424
], factory);
2525
} else {
2626
// Browser globals:

fileupload/static/js/jquery.fileupload-ui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
'jquery',
2121
'tmpl',
2222
'load-image',
23-
'./jquery.fileupload-fp'
23+
'./jquery.fileupload-fp.js'
2424
], factory);
2525
} else {
2626
// Browser globals:

fileupload/static/js/jquery.fileupload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// Register as an anonymous AMD module:
1919
define([
2020
'jquery',
21-
'jquery.ui.widget'
21+
'jquery.ui.widget.js'
2222
], factory);
2323
} else {
2424
// Browser globals:

0 commit comments

Comments
 (0)