Skip to content

Commit 6b634b0

Browse files
committed
Use the https version of the demo.
1 parent 4955c4e commit 6b634b0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

blueimp-file-upload.jquery.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
],
4040
"homepage": "https://github.com/blueimp/jQuery-File-Upload",
4141
"docs": "https://github.com/blueimp/jQuery-File-Upload/wiki",
42-
"demo": "http://blueimp.github.io/jQuery-File-Upload/",
42+
"demo": "https://blueimp.github.io/jQuery-File-Upload/",
4343
"bugs": "https://github.com/blueimp/jQuery-File-Upload/issues",
4444
"maintainers": [
4545
{

server/gae-go/app/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* jQuery File Upload Plugin GAE Go Example 3.1.1
2+
* jQuery File Upload Plugin GAE Go Example 3.2.0
33
* https://github.com/blueimp/jQuery-File-Upload
44
*
55
* Copyright 2011, Sebastian Tschan
@@ -30,7 +30,7 @@ import (
3030
)
3131

3232
const (
33-
WEBSITE = "http://blueimp.github.io/jQuery-File-Upload/"
33+
WEBSITE = "https://blueimp.github.io/jQuery-File-Upload/"
3434
MIN_FILE_SIZE = 1 // bytes
3535
MAX_FILE_SIZE = 5000000 // bytes
3636
IMAGE_TYPES = "image/(gif|p?jpeg|(x-)?png)"

server/gae-python/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# jQuery File Upload Plugin GAE Python Example 2.1.1
3+
# jQuery File Upload Plugin GAE Python Example 2.2.0
44
# https://github.com/blueimp/jQuery-File-Upload
55
#
66
# Copyright 2011, Sebastian Tschan
@@ -19,7 +19,7 @@
1919
import urllib
2020
import webapp2
2121

22-
WEBSITE = 'http://blueimp.github.io/jQuery-File-Upload/'
22+
WEBSITE = 'https://blueimp.github.io/jQuery-File-Upload/'
2323
MIN_FILE_SIZE = 1 # bytes
2424
MAX_FILE_SIZE = 5000000 # bytes
2525
IMAGE_TYPES = re.compile('image/(gif|p?jpeg|(x-)?png)')

0 commit comments

Comments
 (0)