Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2b7f48e

Browse files
committed
Updated library paths.
Added bower.json.
1 parent 1528f15 commit 2b7f48e

File tree

7 files changed

+83
-23
lines changed

7 files changed

+83
-23
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
## Demo
44
[Demo File Upload](http://blueimp.github.io/jQuery-File-Upload/)
55

6+
## Description
7+
File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery.
8+
Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.
9+
610
## Setup
711
* [How to setup the plugin on your website](https://github.com/blueimp/jQuery-File-Upload/wiki/Setup)
812
* [How to use only the basic plugin (minimal setup guide).](https://github.com/blueimp/jQuery-File-Upload/wiki/Basic-plugin)
@@ -56,9 +60,9 @@ Please read the [issue guidelines](https://github.com/blueimp/jQuery-File-Upload
5660
* [jQuery](http://jquery.com/) v. 1.6+
5761
* [jQuery UI widget factory](http://api.jqueryui.com/jQuery.widget/) v. 1.9+ (included)
5862
* [jQuery Iframe Transport plugin](https://github.com/blueimp/jQuery-File-Upload/blob/master/js/jquery.iframe-transport.js) (included)
59-
* [JavaScript Templates engine](https://github.com/blueimp/JavaScript-Templates) v. 2.2.0+ (optional)
60-
* [JavaScript Load Image function](https://github.com/blueimp/JavaScript-Load-Image) v. 1.7.2+ (optional)
61-
* [JavaScript Canvas to Blob function](https://github.com/blueimp/JavaScript-Canvas-to-Blob) v. 2.0.5+ (optional)
63+
* [JavaScript Templates engine](https://github.com/blueimp/JavaScript-Templates) v. 2.2.1+ (optional)
64+
* [JavaScript Load Image function](https://github.com/blueimp/JavaScript-Load-Image) v. 1.7.3+ (optional)
65+
* [JavaScript Canvas to Blob function](https://github.com/blueimp/JavaScript-Canvas-to-Blob) v. 2.0.6+ (optional)
6266
* [Bootstrap CSS Toolkit](https://github.com/twitter/bootstrap/) v. 2.3+ (optional)
6367

6468
The jQuery UI widget factory is a requirement for the basic File Upload plugin, but very lightweight without any other dependencies.

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.3.1
4+
* jQuery File Upload Plugin AngularJS Demo 1.3.2
55
* https://github.com/blueimp/jQuery-File-Upload
66
*
77
* Copyright 2013, Sebastian Tschan
@@ -173,9 +173,9 @@ <h3 class="title"></h3>
173173
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
174174
<script src="js/vendor/jquery.ui.widget.js"></script>
175175
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
176-
<script src="http://blueimp.github.io/JavaScript-Load-Image/load-image.min.js"></script>
176+
<script src="http://blueimp.github.io/JavaScript-Load-Image/js/load-image.min.js"></script>
177177
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
178-
<script src="http://blueimp.github.io/JavaScript-Canvas-to-Blob/canvas-to-blob.min.js"></script>
178+
<script src="http://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
179179
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
180180
<script src="http://blueimp.github.io/cdn/js/bootstrap.min.js"></script>
181181
<!-- blueimp Gallery script -->

basic-plus.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 Basic Plus Demo 1.1.2
4+
* jQuery File Upload Plugin Basic Plus Demo 1.1.3
55
* https://github.com/blueimp/jQuery-File-Upload
66
*
77
* Copyright 2013, Sebastian Tschan
@@ -101,9 +101,9 @@ <h3>Demo Notes</h3>
101101
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
102102
<script src="js/vendor/jquery.ui.widget.js"></script>
103103
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
104-
<script src="http://blueimp.github.io/JavaScript-Load-Image/load-image.min.js"></script>
104+
<script src="http://blueimp.github.io/JavaScript-Load-Image/js/load-image.min.js"></script>
105105
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
106-
<script src="http://blueimp.github.io/JavaScript-Canvas-to-Blob/canvas-to-blob.min.js"></script>
106+
<script src="http://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
107107
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
108108
<script src="js/jquery.iframe-transport.js"></script>
109109
<!-- The basic File Upload plugin -->

bower.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"name": "blueimp-file-upload",
3+
"version": "8.4.2",
4+
"title": "jQuery File Upload",
5+
"description": "File Upload widget with multiple file selection, drag&amp;drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
6+
"keywords": [
7+
"jquery",
8+
"file",
9+
"upload",
10+
"widget",
11+
"multiple",
12+
"selection",
13+
"drag",
14+
"drop",
15+
"progress",
16+
"preview",
17+
"cross-domain",
18+
"cross-site",
19+
"chunk",
20+
"resume",
21+
"gae",
22+
"go",
23+
"python",
24+
"php",
25+
"bootstrap"
26+
],
27+
"homepage": "https://github.com/blueimp/jQuery-File-Upload",
28+
"author": {
29+
"name": "Sebastian Tschan",
30+
"url": "https://blueimp.net"
31+
},
32+
"maintainers": [
33+
{
34+
"name": "Sebastian Tschan",
35+
"url": "https://blueimp.net"
36+
}
37+
],
38+
"repository": {
39+
"type": "git",
40+
"url": "git://github.com/blueimp/jQuery-File-Upload.git"
41+
},
42+
"bugs": "https://github.com/blueimp/jQuery-File-Upload/issues",
43+
"licenses": [
44+
{
45+
"type": "MIT",
46+
"url": "http://www.opensource.org/licenses/MIT"
47+
}
48+
],
49+
"dependencies": {
50+
"jquery": ">=1.6",
51+
"blueimp-tmpl": ">=2.2.1",
52+
"blueimp-load-image": ">=1.7.3",
53+
"blueimp-canvas-to-blob": ">=2.0.6"
54+
},
55+
"main": "js/jquery.fileupload.js"
56+
}

index.html

Lines changed: 4 additions & 4 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.2
4+
* jQuery File Upload Plugin Demo 8.2.1
55
* https://github.com/blueimp/jQuery-File-Upload
66
*
77
* Copyright 2010, Sebastian Tschan
@@ -213,11 +213,11 @@ <h3 class="title"></h3>
213213
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
214214
<script src="js/vendor/jquery.ui.widget.js"></script>
215215
<!-- The Templates plugin is included to render the upload/download listings -->
216-
<script src="http://blueimp.github.io/JavaScript-Templates/tmpl.min.js"></script>
216+
<script src="http://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
217217
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
218-
<script src="http://blueimp.github.io/JavaScript-Load-Image/load-image.min.js"></script>
218+
<script src="http://blueimp.github.io/JavaScript-Load-Image/js/load-image.min.js"></script>
219219
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
220-
<script src="http://blueimp.github.io/JavaScript-Canvas-to-Blob/canvas-to-blob.min.js"></script>
220+
<script src="http://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
221221
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
222222
<script src="http://blueimp.github.io/cdn/js/bootstrap.min.js"></script>
223223
<!-- blueimp Gallery script -->

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blueimp-file-upload",
3-
"version": "8.4.1",
3+
"version": "8.4.2",
44
"title": "jQuery File Upload",
55
"description": "File Upload widget with multiple file selection, drag&amp;drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
66
"keywords": [
@@ -48,9 +48,9 @@
4848
],
4949
"dependencies": {
5050
"jquery": ">=1.6",
51-
"jquery.ui.widget": ">=1.9",
52-
"blueimp-tmpl": ">=2.2.0",
53-
"blueimp-load-image": ">=1.7.2",
54-
"blueimp-canvas-to-blob": ">=2.0.5"
55-
}
51+
"blueimp-tmpl": ">=2.2.1",
52+
"blueimp-load-image": ">=1.7.3",
53+
"blueimp-canvas-to-blob": ">=2.0.6"
54+
},
55+
"main": "js/jquery.fileupload.js"
5656
}

test/index.html

Lines changed: 4 additions & 4 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.2
4+
* jQuery File Upload Plugin Test 8.2.1
55
* https://github.com/blueimp/jQuery-File-Upload
66
*
77
* Copyright 2010, Sebastian Tschan
@@ -140,9 +140,9 @@ <h2 id="qunit-userAgent"></h2>
140140
</script>
141141
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
142142
<script src="../js/vendor/jquery.ui.widget.js"></script>
143-
<script src="http://blueimp.github.io/JavaScript-Templates/tmpl.min.js"></script>
144-
<script src="http://blueimp.github.io/JavaScript-Load-Image/load-image.min.js"></script>
145-
<script src="http://blueimp.github.io/JavaScript-Canvas-to-Blob/canvas-to-blob.min.js"></script>
143+
<script src="http://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
144+
<script src="http://blueimp.github.io/JavaScript-Load-Image/js/load-image.min.js"></script>
145+
<script src="http://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
146146
<script src="../js/jquery.iframe-transport.js"></script>
147147
<script src="../js/jquery.fileupload.js"></script>
148148
<script>window.testBasicWidget = $.blueimp.fileupload;</script>

0 commit comments

Comments
 (0)