Skip to content

Commit 9ad5b39

Browse files
committed
Refactored fileupload-resize.js to fileupload-image.js.
1 parent 8c7b56f commit 9ad5b39

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

angularjs.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<!--
33
/*
4-
* jQuery File Upload Plugin AngularJS Demo 1.0
4+
* jQuery File Upload Plugin AngularJS Demo 1.0.1
55
* https://github.com/blueimp/jQuery-File-Upload
66
*
77
* Copyright 2013, Sebastian Tschan
@@ -198,8 +198,8 @@ <h3 class="modal-title"></h3>
198198
<script src="js/jquery.fileupload.js"></script>
199199
<!-- The File Upload processing plugin -->
200200
<script src="js/jquery.fileupload-process.js"></script>
201-
<!-- The File Upload image resize plugin -->
202-
<script src="js/jquery.fileupload-resize.js"></script>
201+
<!-- The File Upload image preview & resize plugin -->
202+
<script src="js/jquery.fileupload-image.js"></script>
203203
<!-- The File Upload validation plugin -->
204204
<script src="js/jquery.fileupload-validate.js"></script>
205205
<!-- The File Upload Angular JS module -->

basic-plus.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ <h3>Demo Notes</h3>
110110
<script src="js/jquery.fileupload.js"></script>
111111
<!-- The File Upload processing plugin -->
112112
<script src="js/jquery.fileupload-process.js"></script>
113-
<!-- The File Upload image resize plugin -->
114-
<script src="js/jquery.fileupload-resize.js"></script>
113+
<!-- The File Upload image preview & resize plugin -->
114+
<script src="js/jquery.fileupload-image.js"></script>
115115
<!-- The File Upload validation plugin -->
116116
<script src="js/jquery.fileupload-validate.js"></script>
117117
<script>

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<!--
33
/*
4-
* jQuery File Upload Plugin Demo 8.0
4+
* jQuery File Upload Plugin Demo 8.0.1
55
* https://github.com/blueimp/jQuery-File-Upload
66
*
77
* Copyright 2010, Sebastian Tschan
@@ -240,8 +240,8 @@ <h3 class="modal-title"></h3>
240240
<script src="js/jquery.fileupload.js"></script>
241241
<!-- The File Upload processing plugin -->
242242
<script src="js/jquery.fileupload-process.js"></script>
243-
<!-- The File Upload image resize plugin -->
244-
<script src="js/jquery.fileupload-resize.js"></script>
243+
<!-- The File Upload image preview & resize plugin -->
244+
<script src="js/jquery.fileupload-image.js"></script>
245245
<!-- The File Upload validation plugin -->
246246
<script src="js/jquery.fileupload-validate.js"></script>
247247
<!-- The File Upload user interface plugin -->

js/jquery.fileupload-angular.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* jQuery File Upload AngularJS Plugin 1.1.1
2+
* jQuery File Upload AngularJS Plugin 1.1.2
33
* https://github.com/blueimp/jQuery-File-Upload
44
*
55
* Copyright 2013, Sebastian Tschan
@@ -19,7 +19,7 @@
1919
define([
2020
'jquery',
2121
'angular',
22-
'./jquery.fileupload-resize',
22+
'./jquery.fileupload-image',
2323
'./jquery.fileupload-validate'
2424
], factory);
2525
} else {

js/jquery.fileupload-resize.js renamed to js/jquery.fileupload-image.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* jQuery File Upload Image Resize Plugin 1.1.3
2+
* jQuery File Upload Image Preview & Resize Plugin 1.0
33
* https://github.com/blueimp/jQuery-File-Upload
44
*
55
* Copyright 2013, Sebastian Tschan

js/jquery.fileupload-ui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* jQuery File Upload User Interface Plugin 8.2.2
2+
* jQuery File Upload User Interface Plugin 8.2.3
33
* https://github.com/blueimp/jQuery-File-Upload
44
*
55
* Copyright 2010, Sebastian Tschan
@@ -19,7 +19,7 @@
1919
define([
2020
'jquery',
2121
'tmpl',
22-
'./jquery.fileupload-resize',
22+
'./jquery.fileupload-image',
2323
'./jquery.fileupload-validate'
2424
], factory);
2525
} else {

test/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<!--
33
/*
4-
* jQuery File Upload Plugin Test 8.0
4+
* jQuery File Upload Plugin Test 8.0.1
55
* https://github.com/blueimp/jQuery-File-Upload
66
*
77
* Copyright 2010, Sebastian Tschan
@@ -145,7 +145,7 @@ <h2 id="qunit-userAgent"></h2>
145145
<script src="../js/jquery.fileupload.js"></script>
146146
<script>window.testBasicWidget = $.blueimp.fileupload;</script>
147147
<script src="../js/jquery.fileupload-process.js"></script>
148-
<script src="../js/jquery.fileupload-resize.js"></script>
148+
<script src="../js/jquery.fileupload-image.js"></script>
149149
<script src="../js/jquery.fileupload-validate.js"></script>
150150
<script src="../js/jquery.fileupload-ui.js"></script>
151151
<script>window.testUIWidget = $.blueimp.fileupload;</script>

0 commit comments

Comments
 (0)