Skip to content

Commit

Permalink
Merge pull request blueimp#1086 from sapegin/fixamd
Browse files Browse the repository at this point in the history
Fix relative AMD paths.
  • Loading branch information
blueimp committed Mar 8, 2012
2 parents af27fd8 + 52b646c commit 6707a95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions js/jquery.fileupload-ip.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jQuery File Upload Image Processing Plugin 1.0.4
* jQuery File Upload Image Processing Plugin 1.0.5
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2012, Sebastian Tschan
Expand All @@ -20,7 +20,7 @@
'jquery',
'load-image',
'canvas-to-blob',
'./jquery.fileupload.js'
'./jquery.fileupload'
], factory);
} else {
// Browser globals:
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.fileupload-ui.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jQuery File Upload User Interface Plugin 6.6.1
* jQuery File Upload User Interface Plugin 6.6.2
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2010, Sebastian Tschan
Expand All @@ -20,7 +20,7 @@
'jquery',
'tmpl',
'load-image',
'./jquery.fileupload-ip.js'
'./jquery.fileupload-ip'
], factory);
} else {
// Browser globals:
Expand Down

0 comments on commit 6707a95

Please sign in to comment.