aboutsummaryrefslogtreecommitdiff
path: root/vendors/jquery-file-upload/js/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'vendors/jquery-file-upload/js/main.js')
-rw-r--r--vendors/jquery-file-upload/js/main.js93
1 files changed, 0 insertions, 93 deletions
diff --git a/vendors/jquery-file-upload/js/main.js b/vendors/jquery-file-upload/js/main.js
deleted file mode 100644
index 67109588d..000000000
--- a/vendors/jquery-file-upload/js/main.js
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * jQuery File Upload Plugin JS Example 6.7
- * https://github.com/blueimp/jQuery-File-Upload
- *
- * Copyright 2010, Sebastian Tschan
- * https://blueimp.net
- *
- * Licensed under the MIT license:
- * http://www.opensource.org/licenses/MIT
- */
-
-/*jslint nomen: true, unparam: true, regexp: true */
-/*global $, window, document */
-
-$(function () {
- 'use strict';
-
- // Initialize the jQuery File Upload widget:
- $('#fileupload').fileupload();
-
- // Enable iframe cross-domain access via redirect option:
- $('#fileupload').fileupload(
- 'option',
- 'redirect',
- window.location.href.replace(
- /\/[^\/]*$/,
- '/cors/result.html?%s'
- )
- );
-
- if (window.location.hostname === 'blueimp.github.com') {
- // Demo settings:
- $('#fileupload').fileupload('option', {
- url: '//jquery-file-upload.appspot.com/',
- maxFileSize: 5000000,
- acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i,
- process: [
- {
- action: 'load',
- fileTypes: /^image\/(gif|jpeg|png)$/,
- maxFileSize: 20000000 // 20MB
- },
- {
- action: 'resize',
- maxWidth: 1440,
- maxHeight: 900
- },
- {
- action: 'save'
- }
- ]
- });
- // Upload server status check for browsers with CORS support:
- if ($.support.cors) {
- $.ajax({
- url: '//jquery-file-upload.appspot.com/',
- type: 'HEAD'
- }).fail(function () {
- $('<span class="alert alert-error"/>')
- .text('Upload server currently unavailable - ' +
- new Date())
- .appendTo('#fileupload');
- });
- }
- } else {
- // Load existing files:
- $('#fileupload').each(function () {
- var that = this;
- $.getJSON(this.action, function (result) {
- if (result && result.length) {
- $(that).fileupload('option', 'done')
- .call(that, null, {result: result});
- }
- });
- });
- }
-
- // Initialize the Image Gallery widget:
- $('#fileupload .files').imagegallery();
-
- // Initialize the theme switcher:
- $('#theme-switcher').change(function () {
- var theme = $('#theme');
- theme.prop(
- 'href',
- theme.prop('href').replace(
- /[\w\-]+\/jquery-ui.css/,
- $(this).val() + '/jquery-ui.css'
- )
- );
- });
-
-});